-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathf1c200s.net
1355 lines (1355 loc) · 53.8 KB
/
f1c200s.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 /home/jesse/linux/f1c200s-dev-board/f1c200s.sch)
(date "Mon 24 Aug 2020 01:57:10 PM EDT")
(tool "Eeschema 5.0.2+dfsg1-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source f1c200s.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /power/) (tstamps /5F225B24/)
(title_block
(title)
(company)
(rev)
(date)
(source power.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /memory/) (tstamps /5F327BAA/)
(title_block
(title)
(company)
(rev)
(date)
(source memory.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /IO/) (tstamps /5F3445FA/)
(title_block
(title)
(company)
(rev)
(date)
(source IO.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref R7)
(value 47K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part R-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF0A5CD))
(comp (ref C15)
(value 22p)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF0AB5B))
(comp (ref C16)
(value 22p)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF0AC46))
(comp (ref SW1)
(value SW_Push)
(footprint button:button)
(libsource (lib f1c200s-rescue) (part SW_Push-Switch) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF0CBD8))
(comp (ref J9)
(value Conn_01x01_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x01_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Conn_01x01_Male-Connector) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF55A02))
(comp (ref J8)
(value Conn_01x06_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Conn_01x06_Male-Connector) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF73A4D))
(comp (ref Y1)
(value 24MHz)
(footprint Crystal:Crystal_HC49-4H_Vertical)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Crystal-Device) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF1E393))
(comp (ref R1)
(value 22R)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F094DD7))
(comp (ref C1)
(value .1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F096083))
(comp (ref R2)
(value 22R)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F09FE12))
(comp (ref C2)
(value .1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F09FE18))
(comp (ref R3)
(value 22R)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F0A3496))
(comp (ref C3)
(value .1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0A349C))
(comp (ref J2)
(value Conn_01x04_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x04_Male) (description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0DE588))
(comp (ref J3)
(value Conn_01x07_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x07_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x07_Male) (description "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F0FC322))
(comp (ref J1)
(value Conn_02x14_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x14_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x14_Odd_Even) (description "Generic connector, double row, 02x14, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F66B198))
(comp (ref J13)
(value Conn_01x06_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Conn_01x06_Male-Connector) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF72F89))
(comp (ref U2)
(value F1C100s)
(footprint F1C100s:F1C100s)
(libsource (lib f1c100s) (part F1C100s) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF075E0))
(comp (ref J6)
(value Conn_01x04_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Conn_01x04_Male-Connector) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5EF55BA6))
(comp (ref J4)
(value Conn_02x03_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x03_Odd_Even) (description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F7256AC))
(comp (ref R11)
(value 220k)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F45AC07))
(comp (ref C20)
(value .1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F45AC0E))
(comp (ref C21)
(value .1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F45AC1C))
(comp (ref R12)
(value 220k)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F45AC23))
(comp (ref C22)
(value .1u)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5F45AC2A))
(comp (ref R13)
(value 220k)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5F45AC15))
(comp (ref J5)
(value Conn_01x03_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5F491BF7))
(comp (ref C5)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6B6B))
(comp (ref C13)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6B9F))
(comp (ref C11)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6BA5))
(comp (ref C9)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6BC3))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6BC9))
(comp (ref R5)
(value 2.2K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part R-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6BF9))
(comp (ref R4)
(value 2.2K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part R-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6BFF))
(comp (ref C14)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C17))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C65))
(comp (ref C6)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C6B))
(comp (ref C8)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C71))
(comp (ref C10)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C9B))
(comp (ref U3)
(value XC6421AB03ER-G)
(footprint XC6421AB03ER-G:XC6421AB03ER-G)
(libsource (lib XC6421AB03ER-G) (part XC6421AB03ER-G) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6CDD))
(comp (ref C19)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C53))
(comp (ref C18)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C29))
(comp (ref C17)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C23))
(comp (ref C12)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part C-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F2F6C1D))
(comp (ref D1)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part LED-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F32692E))
(comp (ref R6)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part R-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F326934))
(comp (ref D2)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part LED-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F326946))
(comp (ref R8)
(value 100)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part R-Device) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F326958))
(comp (ref J7)
(value Conn_02x04_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Conn_02x04_Odd_Even-Connector_Generic) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F32695E))
(comp (ref J10)
(value Conn_02x04_Odd_Even)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x04_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Conn_02x04_Odd_Even-Connector_Generic) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F326964))
(comp (ref U1)
(value 3.3v)
(footprint Package_TO_SOT_SMD:SOT-23)
(libsource (lib sot_23_3.3_common) (part 3.3v) (description ""))
(sheetpath (names /power/) (tstamps /5F225B24/))
(tstamp 5F43FE6E))
(comp (ref J11)
(value 105162-0001)
(footprint 105162-0001:105162-0001)
(datasheet http://www.molex.com/webdocs/datasheets/pdf/en-us//1051620001_MEMORY_CARD_SOCKET.pdf)
(fields
(field (name "Arrow Part Number") 105162-0001)
(field (name Description) "Memory Card Connectors 1.45H MICRO SD HEADER WITH D/C PIN")
(field (name Manufacturer_Name) Molex)
(field (name Manufacturer_Part_Number) 105162-0001)
(field (name "Mouser Part Number") 538-105162-0001)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Molex/105162-0001?qs=1fNsfHe5VsK8daqlgKxZfQ%3D%3D))
(libsource (lib f1c200s-rescue) (part 105162-0001-105162-0001) (description ""))
(sheetpath (names /memory/) (tstamps /5F327BAA/))
(tstamp 5F335D9A))
(comp (ref R9)
(value 3.3K)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part R-Device) (description ""))
(sheetpath (names /memory/) (tstamps /5F327BAA/))
(tstamp 5F335DA4))
(comp (ref JP1)
(value CS)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Jumper_NO_Small-Device) (description ""))
(sheetpath (names /memory/) (tstamps /5F327BAA/))
(tstamp 5F335DC0))
(comp (ref JP4)
(value MISO)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Jumper_NO_Small-Device) (description ""))
(sheetpath (names /memory/) (tstamps /5F327BAA/))
(tstamp 5F335DC6))
(comp (ref JP3)
(value MOSI)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Jumper_NO_Small-Device) (description ""))
(sheetpath (names /memory/) (tstamps /5F327BAA/))
(tstamp 5F335DCC))
(comp (ref JP2)
(value SCK)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Jumper_NO_Small-Device) (description ""))
(sheetpath (names /memory/) (tstamps /5F327BAA/))
(tstamp 5F335DD2))
(comp (ref U4)
(value AT25xxx)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8707-SEEPROM-AT25010B-020B-040B-Datasheet.pdf)
(libsource (lib f1c200s-rescue) (part AT25xxx-Memory_EEPROM) (description ""))
(sheetpath (names /memory/) (tstamps /5F327BAA/))
(tstamp 5F335DDC))
(comp (ref J15)
(value 105162-0001)
(footprint 105162-0001:105162-0001)
(datasheet http://www.molex.com/webdocs/datasheets/pdf/en-us//1051620001_MEMORY_CARD_SOCKET.pdf)
(fields
(field (name "Arrow Part Number") 105162-0001)
(field (name Description) "Memory Card Connectors 1.45H MICRO SD HEADER WITH D/C PIN")
(field (name Manufacturer_Name) Molex)
(field (name Manufacturer_Part_Number) 105162-0001)
(field (name "Mouser Part Number") 538-105162-0001)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Molex/105162-0001?qs=1fNsfHe5VsK8daqlgKxZfQ%3D%3D))
(libsource (lib f1c200s-rescue) (part 105162-0001-105162-0001) (description ""))
(sheetpath (names /memory/) (tstamps /5F327BAA/))
(tstamp 5F44551F))
(comp (ref JP5)
(value Jumper)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Jumper-Device) (description ""))
(sheetpath (names /IO/) (tstamps /5F3445FA/))
(tstamp 5F34AEE0))
(comp (ref J14)
(value Conn_01x06_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Conn_01x06_Male-Connector) (description ""))
(sheetpath (names /IO/) (tstamps /5F3445FA/))
(tstamp 5F34AEE6))
(comp (ref J12)
(value 10118194-0011LF)
(footprint 10118194-0011LF:101181940011LF)
(datasheet https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf)
(fields
(field (name Description) "Power to the Board MICRO USD B-TYPE")
(field (name Height) 2)
(field (name Manufacturer_Name) Amphenol)
(field (name Manufacturer_Part_Number) 10118194-0011LF)
(field (name "Mouser Part Number") 649-10118194-0011LF)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Amphenol-FCI/10118194-0011LF?qs=9lcNTSmDlCqQOdqcAswPOg%3D%3D))
(libsource (lib f1c200s-rescue) (part 10118194-0011LF-10118194-0011LF) (description ""))
(sheetpath (names /IO/) (tstamps /5F3445FA/))
(tstamp 5F34AF0A))
(comp (ref JP6)
(value Jumper)
(footprint Jumper:SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm)
(datasheet ~)
(libsource (lib f1c200s-rescue) (part Jumper-Device) (description ""))
(sheetpath (names /IO/) (tstamps /5F3445FA/))
(tstamp 5F34AF47))
(comp (ref R10)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric_Pad1.05x0.95mm_HandSolder)
(datasheet ~)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /IO/) (tstamps /5F3445FA/))
(tstamp 5F453C80)))
(libparts
(libpart (lib Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector) (part Conn_01x04_Male)
(description "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib Connector) (part Conn_01x07_Male)
(description "Generic connector, single row, 01x07, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x07_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x03_Odd_Even)
(description "Generic connector, double row, 02x03, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x03_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib Connector_Generic) (part Conn_02x14_Odd_Even)
(description "Generic connector, double row, 02x14, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x14_Odd_Even))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))
(pin (num 11) (name Pin_11) (type passive))
(pin (num 12) (name Pin_12) (type passive))
(pin (num 13) (name Pin_13) (type passive))
(pin (num 14) (name Pin_14) (type passive))
(pin (num 15) (name Pin_15) (type passive))
(pin (num 16) (name Pin_16) (type passive))
(pin (num 17) (name Pin_17) (type passive))
(pin (num 18) (name Pin_18) (type passive))
(pin (num 19) (name Pin_19) (type passive))
(pin (num 20) (name Pin_20) (type passive))
(pin (num 21) (name Pin_21) (type passive))
(pin (num 22) (name Pin_22) (type passive))
(pin (num 23) (name Pin_23) (type passive))
(pin (num 24) (name Pin_24) (type passive))
(pin (num 25) (name Pin_25) (type passive))
(pin (num 26) (name Pin_26) (type passive))
(pin (num 27) (name Pin_27) (type passive))
(pin (num 28) (name Pin_28) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib XC6421AB03ER-G) (part XC6421AB03ER-G)
(fields
(field (name Reference) U)
(field (name Value) XC6421AB03ER-G))
(pins
(pin (num 1) (name EN2) (type input))
(pin (num 2) (name VIN) (type power_in))
(pin (num 3) (name EN1) (type input))
(pin (num 4) (name VSS) (type power_in))
(pin (num 5) (name VO1) (type power_out))
(pin (num 6) (name VO2) (type power_out))
(pin (num 7) (name PAD) (type power_in))
(pin (num 8) (name PAD) (type power_in))
(pin (num 9) (name PAD) (type power_in))))
(libpart (lib f1c100s) (part F1C100s)
(fields
(field (name Reference) U)
(field (name Value) F1C100s)
(field (name Footprint) F1C100s:F1C100s))
(pins
(pin (num 1) (name HPL) (type output))
(pin (num 2) (name HPCOMFB) (type input))
(pin (num 3) (name HPCOM) (type output))
(pin (num 4) (name HPVCC) (type power_in))
(pin (num 5) (name VCC_IO) (type power_in))
(pin (num 6) (name PD0/LCD_D2/TWI0_SDA/RSB_SDA/EINTD0) (type BiDi))
(pin (num 7) (name PD1/LCD_D3/UART1_RTS/EINTD1) (type BiDi))
(pin (num 8) (name PD2/LCD_D4/UART1_CTS/EINTD2) (type BiDi))
(pin (num 9) (name PD3/LCD_D5/UART1_RX/EINTD3) (type BiDi))
(pin (num 10) (name PD4/LCD_D6/UART1_TX/EINTD4) (type BiDi))
(pin (num 11) (name PD5/LCD_D7/TWI1_SCK/EINTD5) (type BiDi))
(pin (num 12) (name PD6/LCD_D10/TWI1_SDA/EINTD6) (type BiDi))
(pin (num 13) (name PD7/LCD_D11/DA_MCLK/EINTD7) (type BiDi))
(pin (num 14) (name PD8/LCD_D12/DA_BCLK/EINTD8) (type BiDi))
(pin (num 15) (name PD9/LCD_D13/DA_LRCK/EINTD9) (type BiDi))
(pin (num 16) (name PD10/LCD_D14/DA_IN/EINTD10) (type BiDi))
(pin (num 17) (name PD11/LCD_D15/DA_OUT/EINTD11) (type BiDi))
(pin (num 18) (name PD12/LCD_D18/TWI0_SCK/RSB_SCK/EINTD12) (type BiDi))
(pin (num 19) (name PD13/LCD_D19/UART2_TX/EINTD13) (type BiDi))
(pin (num 20) (name VCC_IO) (type power_in))
(pin (num 21) (name PD14/LCD_D20/UART2_RX/EINTD14) (type BiDi))
(pin (num 22) (name VDD_CORE) (type power_in))
(pin (num 23) (name PD15/LCD_D21/UART2_RTS/TWI2_SCK/EINTD15) (type BiDi))
(pin (num 24) (name PD16/LCD_D22/UART2_CTS/TWI2_SDA/EINTD16) (type BiDi))
(pin (num 25) (name PD17/LCD_D23/OWA_OUT/EINTD17) (type BiDi))
(pin (num 26) (name PD18/LCD_CLK/SPI0_CS/EINTD18) (type BiDi))
(pin (num 27) (name PD19/LCD_DE/SPI0_MOSI/EINTD19) (type BiDi))
(pin (num 28) (name PD20/LCD_HSYNC/SPI0_CLK/EINTD20) (type BiDi))
(pin (num 29) (name PD21/LCD_VSYNC/SPI0_MISO/EINTD21) (type BiDi))
(pin (num 30) (name VCC_DRAM) (type power_in))
(pin (num 31) (name VCC_DRAM) (type power_in))
(pin (num 32) (name VCC_DRAM) (type power_in))
(pin (num 33) (name SVREF) (type input))
(pin (num 34) (name VCC_DRAM) (type power_in))
(pin (num 35) (name VDD_CORE) (type power_in))
(pin (num 36) (name VCC_DRAM) (type power_in))
(pin (num 37) (name PE12/DA_MCLK/TWI0_SDA/PWM0/EINTE12) (type BiDi))
(pin (num 38) (name PE11/CLK_OUT/TWI0_SCK/IR_RX/EINTE11) (type BiDi))
(pin (num 39) (name PE10/CSI_D7/UART2_CTS/SPI1_MISO/EINTE10) (type BiDi))
(pin (num 40) (name PE9/CSI_D6/UART2_RTS/SPI1_CLK/EINTE9) (type BiDi))
(pin (num 41) (name PE8/CSI_D5/UART2_RX/SPI1_MOSI/EINTE8) (type BiDi))
(pin (num 42) (name PE7/CSI_D4/UART2_TX/SPI1_CS/EINTE7) (type BiDi))
(pin (num 43) (name PE6/CSI_D3/PWM1/DA_OUT/OWA_OUT/EINTE6) (type BiDi))
(pin (num 44) (name PE5/CSI_D2/LCD_D17/DA_IN/EINTE5) (type BiDi))
(pin (num 45) (name PE4/CSI_D1/LCD_D16/DA_LRCK/RSB_SDA/EINTE4) (type BiDi))
(pin (num 46) (name PE3/CSI_D0/LCD_D9/DA_BCLK/RSB_SCK/EINTE3) (type BiDi))
(pin (num 47) (name PE2/CSI_PCLK/LCD_D8/CLK_OUT/EINTE2) (type BiDi))
(pin (num 48) (name PE1/CSI_VSYNC/LCD_D1/TWI2_SDA/UART0_TX/EINTE1) (type BiDi))
(pin (num 49) (name PE0/CSI_HSYNC/LCD_D0/TWI2_SCK/UART0_RX/EINTE0) (type BiDi))
(pin (num 50) (name VCC_IO) (type power_in))
(pin (num 51) (name HOSCI) (type input))
(pin (num 52) (name HOSCO) (type input))
(pin (num 53) (name PF5/SDC0_D2/DBG_CK/PWM1/EINTF5) (type BiDi))
(pin (num 54) (name PF4/SDC0_D3/UART0_TX/EINTF4) (type BiDi))
(pin (num 55) (name PF3/SDC0_CMD/DBG_DO/EINTF3) (type BiDi))
(pin (num 56) (name PF2/SDC0_CLK/UART0_RX/EINTF2) (type BiDi))
(pin (num 57) (name PF1/SDC0_D0/DBG_DI/EINTF1) (type BiDi))
(pin (num 58) (name PF0/SDC0_D1/DBG_MS/IR_RX/EINTF0) (type BiDi))
(pin (num 59) (name PC0/SPI0_CLK/SDC1_CLK) (type BiDi))
(pin (num 60) (name PC1/SPI0_CS/SDC1_CMD) (type BiDi))
(pin (num 61) (name PC2/SPI0_MISO/SDC1_D0) (type BiDi))
(pin (num 62) (name PC3/SPI0_MOSI/UART0_TX) (type BiDi))
(pin (num 63) (name TPY2) (type input))
(pin (num 64) (name TPY1) (type input))
(pin (num 65) (name TPX2) (type input))
(pin (num 66) (name TPX1) (type input))
(pin (num 67) (name UVCC) (type power_in))
(pin (num 68) (name USB-DM) (type BiDi))
(pin (num 69) (name USB-DP) (type BiDi))
(pin (num 70) (name ~RESET) (type input))
(pin (num 71) (name VDD_CORE) (type power_in))
(pin (num 72) (name TVOUT) (type output))
(pin (num 73) (name TV_VCC) (type power_in))
(pin (num 74) (name TVGND) (type power_in))
(pin (num 75) (name TV_VRN) (type input))
(pin (num 76) (name TV_VRP) (type input))
(pin (num 77) (name TVIN1) (type input))
(pin (num 78) (name TVIN0) (type input))
(pin (num 79) (name LRADC0) (type input))
(pin (num 80) (name AVCC) (type power_in))
(pin (num 81) (name VRA1) (type output))
(pin (num 82) (name AGND) (type power_in))
(pin (num 83) (name VRA2) (type output))
(pin (num 84) (name FMINL) (type input))
(pin (num 85) (name FMINR) (type input))
(pin (num 86) (name LINL) (type input))
(pin (num 87) (name MICIN) (type input))
(pin (num 88) (name HPR) (type output))
(pin (num 89) (name EPAD) (type power_in))))
(libpart (lib f1c200s-rescue) (part 10118194-0011LF-10118194-0011LF)
(fields
(field (name Reference) J)
(field (name Value) 10118194-0011LF-10118194-0011LF)
(field (name Footprint) 101181940011LF)
(field (name Datasheet) https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf)
(field (name Description) "Power to the Board MICRO USD B-TYPE")
(field (name Height) 2)
(field (name "Mouser Part Number") 649-10118194-0011LF)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Amphenol-FCI/10118194-0011LF?qs=9lcNTSmDlCqQOdqcAswPOg%3D%3D)
(field (name Manufacturer_Name) Amphenol)
(field (name Manufacturer_Part_Number) 10118194-0011LF))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name 6) (type passive))
(pin (num 7) (name 7) (type passive))
(pin (num 8) (name 8) (type passive))
(pin (num 9) (name 9) (type passive))
(pin (num 10) (name 10) (type passive))
(pin (num 11) (name 11) (type passive))))
(libpart (lib f1c200s-rescue) (part 105162-0001-105162-0001)
(fields
(field (name Reference) J)
(field (name Value) 105162-0001-105162-0001)
(field (name Footprint) 105162-0001)
(field (name Datasheet) http://www.molex.com/webdocs/datasheets/pdf/en-us//1051620001_MEMORY_CARD_SOCKET.pdf)
(field (name Description) "Memory Card Connectors 1.45H MICRO SD HEADER WITH D/C PIN")
(field (name Manufacturer_Name) Molex)
(field (name Manufacturer_Part_Number) 105162-0001)
(field (name "Arrow Part Number") 105162-0001)
(field (name "Mouser Part Number") 538-105162-0001)
(field (name "Mouser Price/Stock") https://www.mouser.co.uk/ProductDetail/Molex/105162-0001?qs=1fNsfHe5VsK8daqlgKxZfQ%3D%3D))
(pins
(pin (num 1) (name DAT2) (type passive))
(pin (num 2) (name CD/DAT3) (type passive))
(pin (num 3) (name CMD) (type passive))
(pin (num 4) (name VDD) (type passive))
(pin (num 5) (name CLK) (type passive))
(pin (num 6) (name VSS) (type passive))
(pin (num 7) (name DAT0) (type passive))
(pin (num 8) (name DAT1) (type passive))
(pin (num 9) (name DET) (type passive))
(pin (num 10) (name GND_1) (type passive))
(pin (num 11) (name GND_2) (type passive))
(pin (num 12) (name GND_3) (type passive))
(pin (num 13) (name GND_4) (type passive))))
(libpart (lib f1c200s-rescue) (part AT25xxx-Memory_EEPROM)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x4.9mm*)
(fp TSSOP*4.4x3mm*P0.65mm*))
(fields
(field (name Reference) U)
(field (name Value) AT25xxx-Memory_EEPROM))
(pins
(pin (num 1) (name ~CS) (type input))
(pin (num 2) (name MISO) (type 3state))
(pin (num 3) (name ~WP) (type input))
(pin (num 4) (name GND) (type power_in))
(pin (num 5) (name MOSI) (type input))
(pin (num 6) (name SCK) (type input))
(pin (num 7) (name ~HOLD) (type input))
(pin (num 8) (name VCC) (type power_in))))
(libpart (lib f1c200s-rescue) (part C-Device)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C-Device))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib f1c200s-rescue) (part Conn_01x01_Male-Connector)
(footprints
(fp Connector*:*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x01_Male-Connector))
(pins
(pin (num 1) (name Pin_1) (type passive))))
(libpart (lib f1c200s-rescue) (part Conn_01x04_Male-Connector)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x04_Male-Connector))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))))
(libpart (lib f1c200s-rescue) (part Conn_01x06_Male-Connector)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x06_Male-Connector))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib f1c200s-rescue) (part Conn_02x04_Odd_Even-Connector_Generic)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x04_Odd_Even-Connector_Generic))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))))
(libpart (lib f1c200s-rescue) (part Crystal-Device)
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal-Device))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib f1c200s-rescue) (part Jumper-Device)
(fields
(field (name Reference) JP)
(field (name Value) Jumper-Device))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib f1c200s-rescue) (part Jumper_NO_Small-Device)
(fields
(field (name Reference) JP)
(field (name Value) Jumper_NO_Small-Device))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib f1c200s-rescue) (part LED-Device)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(fields
(field (name Reference) D)
(field (name Value) LED-Device))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib f1c200s-rescue) (part R-Device)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R-Device))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib f1c200s-rescue) (part SW_Push-Switch)
(fields
(field (name Reference) SW)
(field (name Value) SW_Push-Switch))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib sot_23_3.3_common) (part 3.3v)
(fields
(field (name Reference) U)
(field (name Value) 3.3v))
(pins
(pin (num 1) (name ~) (type power_in))
(pin (num 2) (name ~) (type power_in))
(pin (num 3) (name ~) (type power_in)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Connector_Generic)
(uri /usr/share/kicad/library/Connector_Generic.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical XC6421AB03ER-G)
(uri /home/jesse/linux/f1c200s-dev-board/XC6421AB03ER-G/XC6421AB03ER-G.lib))
(library (logical f1c100s)
(uri /home/jesse/linux/f1c200s-dev-board/f1c100s/f1c100s.lib))
(library (logical f1c200s-rescue)
(uri /home/jesse/linux/f1c200s-dev-board/f1c200s-rescue.lib))
(library (logical sot_23_3.3_common)
(uri /home/jesse/linux/f1c200s-dev-board/sot_23_3.3_common.lib)))
(nets
(net (code 1) (name "Net-(J3-Pad6)")
(node (ref U2) (pin 42))
(node (ref J3) (pin 6)))
(net (code 2) (name "Net-(J3-Pad5)")
(node (ref U2) (pin 41))
(node (ref J3) (pin 5)))
(net (code 3) (name "Net-(J3-Pad4)")
(node (ref U2) (pin 40))
(node (ref J3) (pin 4)))
(net (code 4) (name "Net-(J3-Pad3)")
(node (ref U2) (pin 39))
(node (ref J3) (pin 3)))
(net (code 5) (name "Net-(J3-Pad2)")
(node (ref U2) (pin 38))
(node (ref J3) (pin 2)))
(net (code 6) (name "Net-(J3-Pad7)")
(node (ref J3) (pin 7))
(node (ref U2) (pin 43)))
(net (code 7) (name /SDC0_D0)
(node (ref U2) (pin 57))
(node (ref J11) (pin 7))
(node (ref J13) (pin 5)))
(net (code 8) (name "Net-(J2-Pad4)")
(node (ref J2) (pin 4))
(node (ref U2) (pin 66)))
(net (code 9) (name "Net-(J2-Pad3)")
(node (ref J2) (pin 3))
(node (ref U2) (pin 65)))
(net (code 10) (name "Net-(J2-Pad2)")
(node (ref J2) (pin 2))
(node (ref U2) (pin 64)))
(net (code 11) (name "Net-(J2-Pad1)")
(node (ref J2) (pin 1))
(node (ref U2) (pin 63)))
(net (code 12) (name /SDC0_D1)
(node (ref J13) (pin 6))
(node (ref U2) (pin 58))
(node (ref J11) (pin 8)))
(net (code 13) (name /SDC0_CMD)
(node (ref J11) (pin 3))
(node (ref J13) (pin 3))
(node (ref U2) (pin 55)))
(net (code 14) (name /SDC0_D3)
(node (ref J13) (pin 2))
(node (ref J11) (pin 2))
(node (ref U2) (pin 54)))
(net (code 15) (name /SDC0_D2)
(node (ref J13) (pin 1))
(node (ref U2) (pin 53))
(node (ref J11) (pin 1)))
(net (code 16) (name "Net-(C15-Pad2)")
(node (ref C15) (pin 2))
(node (ref U2) (pin 52))
(node (ref Y1) (pin 1)))
(net (code 17) (name "Net-(C16-Pad2)")
(node (ref U2) (pin 51))
(node (ref C16) (pin 2))
(node (ref Y1) (pin 2)))
(net (code 18) (name /LCDCLK)
(node (ref U2) (pin 26))
(node (ref J1) (pin 25)))
(net (code 19) (name /LCD7)
(node (ref U2) (pin 11))