-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathwookey.net
1908 lines (1908 loc) · 80.6 KB
/
wookey.net
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
(export (version D)
(design
(source /Users/mre/projets/wookey-hard/hard-wookey-motherboard/wookey.sch)
(date "Thursday, May 16, 2019 at 12:25:03 am")
(tool "Eeschema (5.1.0-rc1-8-gc568fadec)")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title Wookey-Project)
(company ANSSI)
(rev)
(date 2019-05-13)
(source wookey.sch)
(comment (number 1) (value "Designed by Mathieu RENARD"))
(comment (number 2) (value "LICENCE: "))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /usb/) (tstamps /5B064C30/)
(title_block
(title Wookey-Project)
(company ANSSI)
(rev)
(date 2019-05-13)
(source usb.sch)
(comment (number 1) (value "Designed by Mathieu RENARD"))
(comment (number 2) (value "LICENCE: "))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /screen/) (tstamps /5B19B666/)
(title_block
(title Wookey-Project)
(company ANSSI)
(rev)
(date 2019-05-13)
(source screen.sch)
(comment (number 1) (value "Designed by Mathieu RENARD"))
(comment (number 2) (value "LICENCE: "))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /smartcard/) (tstamps /5B19B7B2/)
(title_block
(title Wookey-Project)
(company ANSSI)
(rev)
(date 2019-05-13)
(source smartcard.sch)
(comment (number 1) (value "Designed by Mathieu RENARD"))
(comment (number 2) (value "LICENCE: "))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /cpu/) (tstamps /5B22B7CD/)
(title_block
(title Wookey-Project)
(company ANSSI)
(rev)
(date 2019-05-13)
(source cpu.sch)
(comment (number 1) (value "Designed by Mathieu RENARD"))
(comment (number 2) (value "LICENCE: "))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /storage/) (tstamps /5B00AAC9/)
(title_block
(title Wookey-Project)
(company ANSSI)
(rev)
(date 2019-05-13)
(source storage.sch)
(comment (number 1) (value "Designed by Mathieu RENARD"))
(comment (number 2) (value "LICENCE: "))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref FID1)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperTop)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 58EAA600))
(comp (ref FID2)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperTop)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 58EAAA60))
(comp (ref FID3)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperTop)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 58EAAB8B))
(comp (ref FID4)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperBottom)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 58EABDD6))
(comp (ref FID5)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperBottom)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 58EABF18))
(comp (ref FID6)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperBottom)
(libsource (lib Mechanical) (part Fiducial) (description "Fiducial Marker"))
(sheetpath (names /) (tstamps /))
(tstamp 58EAC03E))
(comp (ref H1)
(value H1)
(footprint Mounting_Holes:MountingHole_2.2mm_M2_ISO14580_Pad)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 59C97B63))
(comp (ref H2)
(value H2)
(footprint Mounting_Holes:MountingHole_2.2mm_M2_ISO14580_Pad)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 59C97FA6))
(comp (ref H3)
(value H3)
(footprint Mounting_Holes:MountingHole_2.2mm_M2_ISO14580_Pad)
(libsource (lib Mechanical) (part MountingHole_Pad) (description "Mounting Hole with connection"))
(sheetpath (names /) (tstamps /))
(tstamp 59C980CA))
(comp (ref P3000)
(value USB_FS_OTG)
(footprint wookey:USB_Micro-B-MOLEX_105017-0001)
(datasheet http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/molex/105017-0001/embase-micro-usb-2-0-type-b-cms/dp/2293836)
(field (name "Distrib PN") 2293836)
(field (name "MFG Name") MOLEX)
(field (name "MFG Part Num") 105017-0001))
(libsource (lib wookey) (part USB_OTG) (description ""))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2A1))
(comp (ref U600)
(value USBLC6-2)
(footprint Package_TO_SOT_SMD:TSOT-23-6)
(datasheet http://www.farnell.com/datasheets/1738051.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/stmicroelectronics/usblc6-2sc6/esd-protection-smd-sot-23-6/dp/1269406?ost=1269406)
(field (name "Distrib PN") 1269406)
(field (name "MFG Name") STMICROELECTRONICS)
(field (name "MFG Part Num") USBLC6-2SC6))
(libsource (lib wookey) (part USBLC6-2) (description ""))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2B7))
(comp (ref U300)
(value USBLC6-2)
(footprint Package_TO_SOT_SMD:TSOT-23-6)
(datasheet http://www.farnell.com/datasheets/1738051.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/stmicroelectronics/usblc6-2sc6/esd-protection-smd-sot-23-6/dp/1269406?ost=1269406)
(field (name "Distrib PN") 1269406)
(field (name "MFG Name") STMICROELECTRONICS)
(field (name "MFG Part Num") USBLC6-2SC6))
(libsource (lib wookey) (part USBLC6-2) (description ""))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2B8))
(comp (ref C201)
(value 4.7uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-1608-08_AVX-J)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/tlcj475m010xta/condensateur-4-7-f-10v-20-0603/dp/1658387)
(field (name "Distrib PN") 1658387)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") TLCJ475M010XTA))
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2B9))
(comp (ref C806)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2BC))
(comp (ref C816)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2BD))
(comp (ref C825)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2BE))
(comp (ref C830)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2BF))
(comp (ref C828)
(value 0.01uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet http://www.farnell.com/datasheets/2600115.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/kemet/c0603c103k2ractu/cond-0-01-f-200v-10-x7r-0603/dp/1288254)
(field (name "Distrib PN") 1288254)
(field (name "MFG Name") KEMET)
(field (name "MFG Part Num") C0603C103K2RACTU))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2C3))
(comp (ref R832)
(value "12K [1%]")
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet http://www.farnell.com/datasheets/2099796.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/vishay/mct06030c1202fp500/res-couche-mince-12k-75v-1-0603/dp/2614416)
(field (name "Distrib PN") 2614416)
(field (name "MFG Name") Vishay)
(field (name "MFG Part Num") MCT06030C1202FP500))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2C8))
(comp (ref C829)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2CD))
(comp (ref C8292)
(value 4.7uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-1608-08_AVX-J)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/tlcj475m010xta/condensateur-4-7-f-10v-20-0603/dp/1658387)
(field (name "Distrib PN") 1658387)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") TLCJ475M010XTA))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2CE))
(comp (ref C826)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2D0))
(comp (ref C815)
(value 4.7uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-1608-08_AVX-J)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/tlcj475m010xta/condensateur-4-7-f-10v-20-0603/dp/1658387)
(field (name "Distrib PN") 1658387)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") TLCJ475M010XTA))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2D1))
(comp (ref C305)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 55A80257))
(comp (ref C605)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 55A81EFF))
(comp (ref P6000)
(value USB_FS_OTG)
(footprint wookey:USB_Micro-B-MOLEX_105017-0001)
(datasheet http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/molex/105017-0001/embase-micro-usb-2-0-type-b-cms/dp/2293836)
(field (name "Distrib PN") 2293836)
(field (name "MFG Name") MOLEX)
(field (name "MFG Part Num") 105017-0001))
(libsource (lib wookey) (part USB_OTG) (description ""))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 58A45C1E))
(comp (ref U800)
(value USB3300)
(footprint Package_DFN_QFN:QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias)
(datasheet http://www.farnell.com/datasheets/2138036.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/microchip/usb3300-ezk/ic-usb-2-0-ulpi-phy-w-otg-32vqfn/dp/2292614)
(field (name "Distrib PN") 2292614)
(field (name "MFG Name") MICROCHIP)
(field (name "MFG Part Num") USB3300-EZK))
(libsource (lib wookey) (part USB3300) (description ""))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5589C2C1))
(comp (ref P828)
(value XI)
(footprint Measurement_Points:Measurement_Point_Round-SMD-Pad_Small)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5ACF7BDC))
(comp (ref Y2)
(value ASEMB-24.000MHZ-LY-T)
(footprint Oscillator:Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm)
(datasheet http://www.farnell.com/datasheets/2581438.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://farnell.com/abracon/asemb-24-000mhz-ly-t/oscil-mems-24mhz-3-2-x-2-5mm-lvcmos/dp/2467910)
(field (name "Distrib PN") 2467910)
(field (name "MFG Name") ABRACON)
(field (name "MFG Part Num") ASEMB-24.000MHZ-LY-T))
(libsource (lib wookey) (part ASE-xxxMHz-Oscillator) (description ""))
(sheetpath (names /usb/) (tstamps /5B064C30/))
(tstamp 5B9F8C34))
(comp (ref P1900)
(value CONN_FPC16)
(footprint wookey:FPC16_MOLEX_52892_1633)
(datasheet http://fr.rs-online.com/web/p/connecteurs-fpc/7883552/)
(fields
(field (name Distrib) RS)
(field (name "Distrib Link") http://fr.rs-online.com/web/p/connecteurs-fpc/7883552/)
(field (name "Distrib PN") 788-3552)
(field (name "MFG Name") Molex)
(field (name "MFG Part Num") 52892-1633))
(libsource (lib Connector_Generic) (part Conn_01x16) (description "Generic connector, single row, 01x16, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /screen/) (tstamps /5B19B666/))
(tstamp 588F7142))
(comp (ref BOM-ONLY1)
(value "FFC Jumper Cable; 0.5mm; 50mm ")
(datasheet ~)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 1908549)
(field (name "MFG Name") "WURTH ELEKTRONIK")
(field (name "MFG Part Num") 687716050002))
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /screen/) (tstamps /5B19B666/))
(tstamp 5CDCBB56))
(comp (ref BOM-ONLY2)
(value "FFC Jumper Cable; 0.5mm; 100mm ")
(datasheet ~)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 2520358)
(field (name "MFG Name") "WURTH ELEKTRONIK")
(field (name "MFG Part Num") 687716100002))
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /screen/) (tstamps /5B19B666/))
(tstamp 5CDCE2B5))
(comp (ref BOM-ONLY3)
(value "FFC Jumper Cable; 0.5mm; 152mm ")
(datasheet ~)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 1519844)
(field (name "MFG Name") MOLEX)
(field (name "MFG Part Num") 98266-0172))
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /screen/) (tstamps /5B19B666/))
(tstamp 5CDCE99E))
(comp (ref P1000)
(value ISO7816_NO)
(footprint wookey:VJW53666)
(datasheet http://fr.rs-online.com/web/p/supports-de-carte-sim-et-memoire/5427911/)
(fields
(field (name Distrib) RS)
(field (name "Distrib Link") http://fr.rs-online.com/web/p/supports-de-carte-sim-et-memoire/5427911/)
(field (name "Distrib PN") 542-7911)
(field (name "MFG Name") "Amphenol FCI")
(field (name "MFG Part Num") 7312P0225A13LF))
(libsource (lib wookey) (part ISO7816_NO) (description ""))
(sheetpath (names /smartcard/) (tstamps /5B19B7B2/))
(tstamp 583DE412))
(comp (ref R1001)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/vishay/crcw060310k0fkeahp/res-couche-epaisse-10k-1-0-25w/dp/1738918)
(field (name "Distrib PN") 1738918)
(field (name "MFG Name") Vishay)
(field (name "MFG Part Num") CRCW060310K0FKEAHP))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /smartcard/) (tstamps /5B19B7B2/))
(tstamp 583E2AD0))
(comp (ref C1002)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /smartcard/) (tstamps /5B19B7B2/))
(tstamp 583F1618))
(comp (ref C1001)
(value 10uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-1608-08_AVX-J)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/f981a106mma/condensateur-10-f-10v-20/dp/2747667)
(field (name "Distrib PN") 2747667)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") F981A106MMA))
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /smartcard/) (tstamps /5B19B7B2/))
(tstamp 583F162A))
(comp (ref U1)
(value LD1117S33TR)
(footprint Package_TO_SOT_SMD:SOT-223)
(datasheet http://www.farnell.com/datasheets/1776449.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/stmicroelectronics/ld1117s33tr/regulateur-ldo-3-3v-1117-sot/dp/1202826)
(field (name "Distrib PN") 1202826)
(field (name "MFG Name") STMICROELECTRONICS)
(field (name "MFG Part Num") LD1117S33TR))
(libsource (lib wookey) (part LD1117S33TR) (description ""))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5CDD01A8))
(comp (ref C2)
(value 10uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-1608-08_AVX-J)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/f981a106mma/condensateur-10-f-10v-20/dp/2747667)
(field (name "Distrib PN") 2747667)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") F981A106MMA))
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5CDD01A9))
(comp (ref C4)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5CDD01AA))
(comp (ref C6)
(value 10uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-1608-08_AVX-J)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/f981a106mma/condensateur-10-f-10v-20/dp/2747667)
(field (name "Distrib PN") 2747667)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") F981A106MMA))
(libsource (lib Device) (part CP_Small) (description "Polarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5CDD01AB))
(comp (ref D1)
(value STPS1L30A)
(footprint Diode_SMD:D_SMA)
(datasheet http://www.farnell.com/datasheets/1690210.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/stmicroelectronics/stps1l30a/diode-schottky-1a-30v/dp/9907491)
(field (name "Distrib PN") 9907491)
(field (name "MFG Name") STMICROELECTRONICS)
(field (name "MFG Part Num") STPS1L30A))
(libsource (lib wookey) (part ZENERsmall) (description ""))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 557FE9CE))
(comp (ref R100)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/vishay/crcw060310k0fkeahp/res-couche-epaisse-10k-1-0-25w/dp/1738918)
(field (name "Distrib PN") 1738918)
(field (name "MFG Name") Vishay)
(field (name "MFG Part Num") CRCW060310K0FKEAHP))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 557FEE42))
(comp (ref R104)
(value 470)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/vishay/crcw0603470rfkea/res-couche-epaisse-470r-1-0-1w/dp/2122323)
(field (name "Distrib PN") 2122323)
(field (name "MFG Name") "Vishay ")
(field (name "MFG Part Num") CRCW0603470RFKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 557FEF49))
(comp (ref D111)
(value "LED GREEN")
(footprint LED_SMD:LED_0603_1608Metric_Castellated)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/vishay/vlmtg1300-gs08/led-0603-truevert/dp/2251490?st=VISHAY%20-%20LED,%20verte)
(field (name "Distrib PN") 2251490)
(field (name "MFG Name") VISHAY)
(field (name "MFG Part Num") VLMTG1300-GS08))
(libsource (lib wookey) (part LED) (description ""))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 557FF390))
(comp (ref D110)
(value "LED BLUE")
(footprint LED_SMD:LED_0603_1608Metric_Castellated)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/vishay/vlmb1300-gs08/led-0603-bleu-hautebrillant/dp/2251459?st=VLMB1300-GS08)
(field (name "Distrib PN") 2251459)
(field (name "MFG Name") VISHAY)
(field (name "MFG Part Num") VLMB1300-GS08))
(libsource (lib wookey) (part LED) (description ""))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 557FF3FD))
(comp (ref C521)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55800B04))
(comp (ref C511)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55800BE0))
(comp (ref C519)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55800C1F))
(comp (ref C528)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55800C61))
(comp (ref C550)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55800C9D))
(comp (ref C575)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55800DC9))
(comp (ref C500)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55800E2A))
(comp (ref C506)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55800ED5))
(comp (ref C522)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5580104D))
(comp (ref C573)
(value 2.2uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-1608-08_AVX-J)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/tacl225m016xta/condensateur-2-2-f-16v-20-0603/dp/1135275)
(field (name "Distrib PN") 1135275)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") TACL225M016XTA))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55802948))
(comp (ref C549)
(value 2.2uF)
(footprint Capacitor_Tantalum_SMD:CP_EIA-1608-08_AVX-J)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/tacl225m016xta/condensateur-2-2-f-16v-20-0603/dp/1135275)
(field (name "Distrib PN") 1135275)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") TACL225M016XTA))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 558029A0))
(comp (ref R514)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/vishay/crcw060310k0fkeahp/res-couche-epaisse-10k-1-0-25w/dp/1738918)
(field (name "Distrib PN") 1738918)
(field (name "MFG Name") Vishay)
(field (name "MFG Part Num") CRCW060310K0FKEAHP))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5580630F))
(comp (ref C514)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/avx/0603yc104jat2a/condensateur-0-1-f-16v-5-x7r-0603/dp/1740612)
(field (name "Distrib PN") 1740612)
(field (name "MFG Name") AVX)
(field (name "MFG Part Num") 0603YC104JAT2A))
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55806383))
(comp (ref SW514)
(value RESET)
(footprint wookey:KSR_TACTILE_SWITCH)
(datasheet http://www.farnell.com/datasheets/1780692.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/c-k-components/ksr231g-lfs/tactile-commutateur-miniature/dp/1201422)
(field (name "Distrib PN") 1201422)
(field (name "MFG Name") "C & K COMPONENTS")
(field (name "MFG Part Num") "KSR231G LFS"))
(libsource (lib wookey) (part SW_PUSH) (description ""))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55806494))
(comp (ref P513)
(value TP1)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55839924))
(comp (ref P514)
(value TP2)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 558399BD))
(comp (ref P515)
(value TP3)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55839A41))
(comp (ref P546)
(value TP8)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5583C8AD))
(comp (ref P545)
(value TP7)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5583D0AD))
(comp (ref P543)
(value TP5)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5583D1A9))
(comp (ref P542)
(value TP4)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5583D229))
(comp (ref P572)
(value DEBUG/PROG)
(footprint Pin_Headers:Pin_Header_Straight_1x05)
(datasheet http://fr.rs-online.com/web/p/embases-de-circuit-imprime/4838499/)
(fields
(field (name "Distrib Link") https://fr.rs-online.com/web/p/embases-de-circuit-imprime/1802130/)
(field (name "Distrib PN") 1802130)
(field (name "MFG Name") Samtec)
(field (name "MFG Part Num") TSW-105-07-L-S))
(libsource (lib Connector_Generic) (part Conn_01x05) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5589C2A3))
(comp (ref R110)
(value 470)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/vishay/crcw0603470rfkea/res-couche-epaisse-470r-1-0-1w/dp/2122323)
(field (name "Distrib PN") 2122323)
(field (name "MFG Name") "Vishay ")
(field (name "MFG Part Num") CRCW0603470RFKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 559ECD7D))
(comp (ref R111)
(value 470)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/vishay/crcw0603470rfkea/res-couche-epaisse-470r-1-0-1w/dp/2122323)
(field (name "Distrib PN") 2122323)
(field (name "MFG Name") "Vishay ")
(field (name "MFG Part Num") CRCW0603470RFKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 559ECE5D))
(comp (ref P523)
(value UART4)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(datasheet http://fr.rs-online.com/web/p/embases-de-circuit-imprime/3606437/)
(fields
(field (name "Distrib Link") http://fr.rs-online.com/web/p/embases-de-circuit-imprime/3606437/)
(field (name "Distrib PN") 360-6437)
(field (name "MFG Name") MOLEX)
(field (name "MFG Part Num") 90121-0763))
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 55B8929E))
(comp (ref D2)
(value STPS1L30A)
(footprint Diode_SMD:D_SMA)
(datasheet http://www.farnell.com/datasheets/1690210.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/stmicroelectronics/stps1l30a/diode-schottky-1a-30v/dp/9907491)
(field (name "Distrib PN") 9907491)
(field (name "MFG Name") STMICROELECTRONICS)
(field (name "MFG Part Num") STPS1L30A))
(libsource (lib wookey) (part ZENERsmall) (description ""))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 58B9AE08))
(comp (ref P592)
(value UART1)
(footprint Pin_Headers:Pin_Header_Straight_1x03)
(datasheet http://fr.rs-online.com/web/p/embases-de-circuit-imprime/3606437/)
(fields
(field (name "Distrib Link") http://fr.rs-online.com/web/p/embases-de-circuit-imprime/3606437/)
(field (name "Distrib PN") 360-6437)
(field (name "MFG Name") MOLEX)
(field (name "MFG Part Num") 90121-0763))
(libsource (lib Connector_Generic) (part Conn_01x03) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 58BA316A))
(comp (ref SW503)
(value DFU)
(footprint wookey:KSR_TACTILE_SWITCH)
(datasheet http://www.farnell.com/datasheets/1780692.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://fr.farnell.com/c-k-components/ksr231g-lfs/tactile-commutateur-miniature/dp/1201422)
(field (name "Distrib PN") 1201422)
(field (name "MFG Name") "C & K COMPONENTS")
(field (name "MFG Part Num") "KSR231G LFS"))
(libsource (lib wookey) (part SW_PUSH) (description ""))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 58BDB2DF))
(comp (ref R503)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") https://fr.farnell.com/vishay/crcw060310k0fkeahp/res-couche-epaisse-10k-1-0-25w/dp/1738918)
(field (name "Distrib PN") 1738918)
(field (name "MFG Name") Vishay)
(field (name "MFG Part Num") CRCW060310K0FKEAHP))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5CDD01C0))
(comp (ref U500)
(value STM32F439VIT6)
(footprint Housings_QFP:LQFP-100_14x14mm_Pitch0.5mm)
(datasheet http://www.farnell.com/datasheets/2308533.pdf)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib Link") http://uk.farnell.com/stmicroelectronics/stm32f439vit6/mcu-32bit-cortex-m4-180mhz-lqfp/dp/2393671)
(field (name "Distrib PN") 2393671)
(field (name "MFG Name") STMICROELECTRONICS)
(field (name "MFG Part Num") STM32F439VIT6))
(libsource (lib wookey) (part STM32F417VE) (description ""))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 555A55E3))
(comp (ref P1)
(value GND)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 58935A07))
(comp (ref P596)
(value I2C1_SDA)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 58935903))
(comp (ref P595)
(value I2C1_SCL)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 58934DB6))
(comp (ref R596)
(value 47K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 2122577)
(field (name "MFG Name") Vishay)
(field (name "MFG Part Num") CRCW060347K0FKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 583F452A))
(comp (ref R595)
(value 47K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 2122577)
(field (name "MFG Name") Vishay)
(field (name "MFG Part Num") CRCW060347K0FKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 583F416C))
(comp (ref P547)
(value TP9)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5BC45B12))
(comp (ref P548)
(value TP10)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(libsource (lib Connector_Generic) (part Conn_01x01) (description "Generic connector, single row, 01x01, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /cpu/) (tstamps /5B22B7CD/))
(tstamp 5BC45BB6))
(comp (ref R408)
(value 47K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 2122577)
(field (name "MFG Name") "Vishay ")
(field (name "MFG Part Num") CRCW060347K0FKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /storage/) (tstamps /5B00AAC9/))
(tstamp 5B9F2724))
(comp (ref R407)
(value 47K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 2122577)
(field (name "MFG Name") "Vishay ")
(field (name "MFG Part Num") CRCW060347K0FKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /storage/) (tstamps /5B00AAC9/))
(tstamp 5B9F2725))
(comp (ref R401)
(value 47K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 2122577)
(field (name "MFG Name") "Vishay ")
(field (name "MFG Part Num") CRCW060347K0FKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /storage/) (tstamps /5B00AAC9/))
(tstamp 5B9F2726))
(comp (ref R405)
(value 47K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 2122577)
(field (name "MFG Name") "Vishay ")
(field (name "MFG Part Num") CRCW060347K0FKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))
(sheetpath (names /storage/) (tstamps /5B00AAC9/))
(tstamp 5B9F2727))
(comp (ref R402)
(value 47K)
(footprint Resistor_SMD:R_0603_1608Metric)
(fields
(field (name Distrib) FARNELL)
(field (name "Distrib PN") 2122577)
(field (name "MFG Name") "Vishay ")
(field (name "MFG Part Num") CRCW060347K0FKEA))
(libsource (lib Device) (part R_Small) (description "Resistor, small symbol"))