forked from OLIMEX/iCE40HX1K-EVB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iCE40HX1K-EVB_Rev_B.net
1304 lines (1304 loc) · 45.5 KB
/
iCE40HX1K-EVB_Rev_B.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/penko/SVN_Checkout/iCE40HX1K-EVB/Hardware/trunk/BRD/iCE40HX1K-EVB_Rev_B.sch)
(date "Mon 09 May 2016 01:09:43 PM EEST")
(tool "Eeschema 4.0.2+dfsg1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company "OLimeX LTD")
(rev A)
(date)
(source iCE40HX1K-EVB_Rev_B.sch)
(comment (number 1) (value https://www.olimex.com/))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref PWR1)
(value "PWRJ-2mm(YDJ-1136)")
(footprint "OLIMEX_Connectors-FP:PWRJ-2mm(YDJ-1136)")
(libsource (lib OLIMEX_Connectors) (part PWR-JAKPWR_JACK_UNI_MILLING))
(sheetpath (names /) (tstamps /))
(tstamp 56B1FFB7))
(comp (ref FUSE1)
(value "NA(5025)")
(footprint OLIMEX_Devices-FP:FUSE-5025)
(libsource (lib OLIMEX_Devices) (part FSMD035))
(sheetpath (names /) (tstamps /))
(tstamp 56B1FFB9))
(comp (ref C5)
(value 47uF/6.3V/0805)
(footprint OLIMEX_RLC-FP:C_0805_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B1FFBA))
(comp (ref C6)
(value 47uF/6.3V/0805)
(footprint OLIMEX_RLC-FP:C_0805_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B1FFBB))
(comp (ref D1)
(value SMBJ6.0A)
(footprint OLIMEX_Diodes-FP:DO214AA)
(libsource (lib OLIMEX_Diodes) (part SMBJ6.0A))
(sheetpath (names /) (tstamps /))
(tstamp 56B2005A))
(comp (ref PWRLED1)
(value LED/Red/0603)
(footprint OLIMEX_LEDs-FP:LED_0603_KA)
(libsource (lib OLIMEX_Diodes) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 56B2005F))
(comp (ref R12)
(value 2.2k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56B20060))
(comp (ref C1)
(value 22uF/6.3V/0603)
(footprint OLIMEX_RLC-FP:C_0603_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B20065))
(comp (ref L1)
(value 2.2uH/1.5A/DCR<0.1R/CD32)
(footprint OLIMEX_RLC-FP:CD32)
(libsource (lib OLIMEX_RCL) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 56B20069))
(comp (ref R5)
(value 4.99k/1%)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56B2006B))
(comp (ref R6)
(value 1.1k/1%)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56B2006C))
(comp (ref U4)
(value "ICE40HX1K-VQ100(VQFP100)")
(footprint OLIMEX_IC-FP:VQFP100_Pitch-0.5mm_Dimensions-16.00x16.00x1.20mm)
(datasheet www.latticesemi.com/view_document?document_id=49312)
(fields
(field (name Note) PTB))
(libsource (lib OLIMEX_IC) (part "ICE40HX1K-VQ100(VQFP100)"))
(sheetpath (names /) (tstamps /))
(tstamp 56B27B04))
(comp (ref C17)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B5F341))
(comp (ref C15)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B626AE))
(comp (ref C13)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B62893))
(comp (ref C11)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B6B85F))
(comp (ref C16)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B7E9A3))
(comp (ref C14)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B7E9B3))
(comp (ref C12)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B7E9CF))
(comp (ref C18)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B8FDA0))
(comp (ref C23)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B9B452))
(comp (ref C25)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B9B458))
(comp (ref C26)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B9B45E))
(comp (ref D2)
(value "1N5819(S4SOD-123)")
(footprint OLIMEX_Diodes-FP:SOD-123_1C-2A_KA)
(libsource (lib OLIMEX_Diodes) (part D_Schottky))
(sheetpath (names /) (tstamps /))
(tstamp 56BA8EB0))
(comp (ref C21)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56BB4794))
(comp (ref C22)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56BB479A))
(comp (ref C24)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56BB47A0))
(comp (ref U1)
(value "W25Q16BVSSIG(SOIC-8_208mil)")
(footprint OLIMEX_IC-FP:SO-8_208mil)
(libsource (lib OLIMEX_IC) (part W25Q16BV))
(sheetpath (names /) (tstamps /))
(tstamp 56BBC671))
(comp (ref C3)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56BC6DA1))
(comp (ref R11)
(value 10k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BE6C6D))
(comp (ref R4)
(value 10k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BE735C))
(comp (ref R1)
(value 10k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56B64F23))
(comp (ref R2)
(value 2.2k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56B6A953))
(comp (ref R9)
(value 22R)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56B9489B))
(comp (ref CDone1)
(value LED/Green/0603)
(footprint OLIMEX_LEDs-FP:LED_0603_KA)
(libsource (lib OLIMEX_Diodes) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 56B9B581))
(comp (ref R3)
(value 22R)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56B9B587))
(comp (ref PGM1)
(value BH10S)
(footprint OLIMEX_Connectors-FP:UEXT_ML10)
(libsource (lib OLIMEX_Connectors) (part BH10S))
(sheetpath (names /) (tstamps /))
(tstamp 56B4FF12))
(comp (ref CR1)
(value Oscillator-100MHZ_TXC-7W)
(footprint OLIMEX_Crystal-FP:Oscillator_7.0x5.0mm)
(libsource (lib OLIMEX_Devices) (part Oscillator-100MHZ_TXC-7W))
(sheetpath (names /) (tstamps /))
(tstamp 56B90D13))
(comp (ref C4)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B971F2))
(comp (ref R10)
(value 22R)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56B9A8B3))
(comp (ref C19)
(value "NA(100nF)")
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56BB6354))
(comp (ref R15)
(value 10k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BB635A))
(comp (ref BUT1)
(value "T1107A(6x3,8x2,5MM)")
(footprint "OLIMEX_Buttons-FP:T1107A(6x3,8x2,5MM)")
(libsource (lib OLIMEX_Buttons) (part "T1107A(6x3,8x2,5MM)"))
(sheetpath (names /) (tstamps /))
(tstamp 56BB6360))
(comp (ref RESET1)
(value "T1107A(6x3,8x2,5MM)")
(footprint "OLIMEX_Buttons-FP:T1107A(6x3,8x2,5MM)")
(libsource (lib OLIMEX_Buttons) (part "T1107A(6x3,8x2,5MM)"))
(sheetpath (names /) (tstamps /))
(tstamp 56BB637E))
(comp (ref C20)
(value "NA(100nF)")
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56BDF7CE))
(comp (ref R16)
(value 10k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BDF7D4))
(comp (ref BUT2)
(value "T1107A(6x3,8x2,5MM)")
(footprint "OLIMEX_Buttons-FP:T1107A(6x3,8x2,5MM)")
(libsource (lib OLIMEX_Buttons) (part "T1107A(6x3,8x2,5MM)"))
(sheetpath (names /) (tstamps /))
(tstamp 56BDF7DA))
(comp (ref LED1)
(value LED/Red/0603)
(footprint OLIMEX_LEDs-FP:LED_0603_KA)
(libsource (lib OLIMEX_Diodes) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 56BE98BB))
(comp (ref R13)
(value 2.2k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BE98C1))
(comp (ref LED2)
(value LED/Red/0603)
(footprint OLIMEX_LEDs-FP:LED_0603_KA)
(libsource (lib OLIMEX_Diodes) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 56BF244B))
(comp (ref R14)
(value 2.2k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BF2451))
(comp (ref U2)
(value "SY8009AAAC(SOT23-5)")
(footprint OLIMEX_IC-FP:SOT-23-5)
(libsource (lib OLIMEX_IC) (part "SY8009AAAC(SOT23-5)"))
(sheetpath (names /) (tstamps /))
(tstamp 56C57E0F))
(comp (ref C7)
(value 22uF/6.3V/0603)
(footprint OLIMEX_RLC-FP:C_0603_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56C6EBB7))
(comp (ref C9)
(value 22uF/6.3V/0603)
(footprint OLIMEX_RLC-FP:C_0603_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56C6F4A5))
(comp (ref C2)
(value 22uF/6.3V/0603)
(footprint OLIMEX_RLC-FP:C_0603_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56C73A18))
(comp (ref L2)
(value 2.2uH/1.5A/DCR<0.1R/CD32)
(footprint OLIMEX_RLC-FP:CD32)
(libsource (lib OLIMEX_RCL) (part L))
(sheetpath (names /) (tstamps /))
(tstamp 56C73A24))
(comp (ref R7)
(value 4.99k/1%)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56C73A2A))
(comp (ref R8)
(value 4.99k/1%)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56C73A30))
(comp (ref U3)
(value "SY8009AAAC(SOT23-5)")
(footprint OLIMEX_IC-FP:SOT-23-5)
(libsource (lib OLIMEX_IC) (part "SY8009AAAC(SOT23-5)"))
(sheetpath (names /) (tstamps /))
(tstamp 56C73A39))
(comp (ref C8)
(value 22uF/6.3V/0603)
(footprint OLIMEX_RLC-FP:C_0603_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56C73A4B))
(comp (ref C10)
(value 22uF/6.3V/0603)
(footprint OLIMEX_RLC-FP:C_0603_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56C73A57))
(comp (ref C28)
(value 100nF)
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B9F16A))
(comp (ref C27)
(value "NA(100nF)")
(footprint OLIMEX_RLC-FP:C_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 56B9F357))
(comp (ref U5)
(value "K6R4016V1D-TC10(TSOP-44)")
(footprint OLIMEX_IC-FP:TSOP-44_Pitch-0.80mm_18.80x11.80x1.20mm)
(libsource (lib OLIMEX_IC) (part "K6R4016V1D-TC10(TSOP-44)"))
(sheetpath (names /) (tstamps /))
(tstamp 56BA3370))
(comp (ref R17)
(value 10k)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BB8E50))
(comp (ref GPIO1)
(value BH34R)
(footprint OLIMEX_Connectors-FP:BH34R)
(libsource (lib OLIMEX_Connectors) (part BH34S))
(sheetpath (names /) (tstamps /))
(tstamp 56BAE4C1))
(comp (ref R18)
(value 22R)
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BBA6A3))
(comp (ref GND1)
(value TESTPAD)
(footprint OLIMEX_Other-FP:TEST_PAD40x70_SQUARE)
(libsource (lib OLIMEX_OTHER) (part TESTPAD))
(sheetpath (names /) (tstamps /))
(tstamp 56BDC151))
(comp (ref TxD_E1)
(value Opened)
(footprint OLIMEX_Jumpers-FP:SJ)
(libsource (lib OLIMEX_Jumpers) (part SJ))
(sheetpath (names /) (tstamps /))
(tstamp 56BF634F))
(comp (ref R19)
(value "NA(22R)")
(footprint OLIMEX_RLC-FP:R_0402_5MIL_DWS)
(libsource (lib OLIMEX_RCL) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 56BFB517))
(comp (ref 3.3V_E1)
(value Opened)
(footprint OLIMEX_Jumpers-FP:SJ)
(libsource (lib OLIMEX_Jumpers) (part SJ))
(sheetpath (names /) (tstamps /))
(tstamp 572CD0B4))
(comp (ref RxD_E1)
(value Opened)
(footprint OLIMEX_Jumpers-FP:SJ)
(libsource (lib OLIMEX_Jumpers) (part SJ))
(sheetpath (names /) (tstamps /))
(tstamp 56BF2352)))
(libparts
(libpart (lib OLIMEX_Connectors) (part BH10S)
(fields
(field (name Reference) CON)
(field (name Value) BH10S))
(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))))
(libpart (lib OLIMEX_Connectors) (part BH34S)
(footprints
(fp *YA-V36P-2X20-LF*))
(fields
(field (name Reference) GPIO)
(field (name Value) BH34S))
(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))
(pin (num 12) (name 12) (type passive))
(pin (num 13) (name 13) (type passive))
(pin (num 14) (name 14) (type passive))
(pin (num 15) (name 15) (type passive))
(pin (num 16) (name 16) (type passive))
(pin (num 17) (name 17) (type passive))
(pin (num 18) (name 18) (type passive))
(pin (num 19) (name 19) (type passive))
(pin (num 20) (name 20) (type passive))
(pin (num 21) (name 21) (type passive))
(pin (num 22) (name 22) (type passive))
(pin (num 23) (name 23) (type passive))
(pin (num 24) (name 24) (type passive))
(pin (num 25) (name 25) (type passive))
(pin (num 26) (name 26) (type passive))
(pin (num 27) (name 27) (type passive))
(pin (num 28) (name 28) (type passive))
(pin (num 29) (name 29) (type passive))
(pin (num 30) (name 30) (type passive))
(pin (num 31) (name 31) (type passive))
(pin (num 32) (name 32) (type passive))
(pin (num 33) (name 33) (type passive))
(pin (num 34) (name 34) (type passive))))
(libpart (lib OLIMEX_RCL) (part C)
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib OLIMEX_Diodes) (part D_Schottky)
(footprints
(fp D-Pak_TO252AA)
(fp Diode_*)
(fp *SingleDiode)
(fp *SingleDiode*)
(fp *_Diode_*))
(fields
(field (name Reference) D)
(field (name Value) D_Schottky))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib OLIMEX_Devices) (part FSMD035)
(footprints
(fp *1206*)
(fp *R5025*)
(fp *1/4W_FUSE*)
(fp *RFUSE1/8*))
(fields
(field (name Reference) FUSE)
(field (name Value) FSMD035))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib OLIMEX_IC) (part "ICE40HX1K-VQ100(VQFP100)")
(description "iCE40 family of ultra-low power, non-volatile FPGAs")
(docs www.latticesemi.com/view_document?document_id=49312)
(footprints
(fp *S-PQFP-G100*))
(fields
(field (name Reference) U)
(field (name Value) "ICE40HX1K-VQ100(VQFP100)"))
(pins
(pin (num 1) (name IOL_1A) (type BiDi))
(pin (num 2) (name IOL_1B) (type BiDi))
(pin (num 3) (name IOL_2A) (type BiDi))
(pin (num 4) (name IOL_2B) (type BiDi))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name VCCIO_3) (type power_in))
(pin (num 7) (name IOL_3A) (type BiDi))
(pin (num 8) (name IOL_3B) (type BiDi))
(pin (num 9) (name IOL_5A) (type BiDi))
(pin (num 10) (name IOL_5B) (type BiDi))
(pin (num 11) (name VCC) (type power_in))
(pin (num 12) (name IOL_6A) (type BiDi))
(pin (num 13) (name IOL_6B_GBIN7) (type BiDi))
(pin (num 14) (name VCCIO_3) (type power_in))
(pin (num 15) (name IOL_7A_GBIN6) (type BiDi))
(pin (num 16) (name IOL_7B) (type BiDi))
(pin (num 17) (name GND) (type power_in))
(pin (num 18) (name IOL_8A) (type BiDi))
(pin (num 19) (name IOL_8B) (type BiDi))
(pin (num 20) (name IOL_10A) (type BiDi))
(pin (num 21) (name IOL_10B) (type BiDi))
(pin (num 22) (name VCCIO_3) (type power_in))
(pin (num 23) (name GND) (type power_in))
(pin (num 24) (name IOL_12A) (type BiDi))
(pin (num 25) (name IOL_12B) (type BiDi))
(pin (num 26) (name IOB_26) (type BiDi))
(pin (num 27) (name IOB_27) (type BiDi))
(pin (num 28) (name IOB_28) (type BiDi))
(pin (num 29) (name IOB_29) (type BiDi))
(pin (num 30) (name IOB_30) (type BiDi))
(pin (num 31) (name VCCIO_2) (type power_in))
(pin (num 32) (name GND) (type power_in))
(pin (num 33) (name IOB_35_GBIN5) (type BiDi))
(pin (num 34) (name IOB_36_GBIN4) (type BiDi))
(pin (num 35) (name VCC) (type power_in))
(pin (num 36) (name IOB_34) (type BiDi))
(pin (num 37) (name IOB_37) (type BiDi))
(pin (num 38) (name VCCIO_2) (type power_in))
(pin (num 39) (name GND) (type power_in))
(pin (num 40) (name IOB_41) (type BiDi))
(pin (num 41) (name IOB_42_CBSEL0) (type BiDi))
(pin (num 42) (name IOB_43_CBSEL1) (type BiDi))
(pin (num 43) (name CDONE) (type BiDi))
(pin (num 44) (name CRESET_B) (type BiDi))
(pin (num 45) (name IOB_44_SDO) (type BiDi))
(pin (num 46) (name IOB_45_SDI) (type BiDi))
(pin (num 47) (name GND) (type power_in))
(pin (num 48) (name IOB_46_SCK) (type BiDi))
(pin (num 49) (name IOB_47_SS) (type BiDi))
(pin (num 50) (name VCC_SPI) (type power_in))
(pin (num 51) (name IOR_52) (type BiDi))
(pin (num 52) (name IOR_53) (type BiDi))
(pin (num 53) (name IOR_54) (type BiDi))
(pin (num 54) (name IOR_55) (type BiDi))
(pin (num 55) (name GND) (type power_in))
(pin (num 56) (name IOR_56) (type BiDi))
(pin (num 57) (name IOR_57) (type BiDi))
(pin (num 58) (name VCCIO_1) (type power_in))
(pin (num 59) (name IOR_58) (type BiDi))
(pin (num 60) (name IOR_59) (type BiDi))
(pin (num 61) (name VCC) (type power_in))
(pin (num 62) (name IOR_60_GBIN3) (type BiDi))
(pin (num 63) (name IOR_61_GBIN2) (type BiDi))
(pin (num 64) (name IOR_63) (type BiDi))
(pin (num 65) (name IOR_64) (type BiDi))
(pin (num 66) (name IOR_65) (type BiDi))
(pin (num 67) (name VCCIO_1) (type power_in))
(pin (num 68) (name IOR_67) (type BiDi))
(pin (num 69) (name IOR_68) (type BiDi))
(pin (num 70) (name GND) (type power_in))
(pin (num 71) (name IOR_69) (type BiDi))
(pin (num 72) (name IOR_70) (type BiDi))
(pin (num 73) (name IOR_71) (type BiDi))
(pin (num 74) (name IOR_72) (type BiDi))
(pin (num 75) (name VPP_2V5) (type power_in))
(pin (num 76) (name VPP_FAST) (type power_in))
(pin (num 77) (name VCC) (type power_in))
(pin (num 78) (name IOT_73) (type BiDi))
(pin (num 79) (name IOT_74) (type BiDi))
(pin (num 80) (name IOT_75) (type BiDi))
(pin (num 81) (name IOT_77) (type BiDi))
(pin (num 82) (name IOT_78) (type BiDi))
(pin (num 83) (name IOT_79) (type BiDi))
(pin (num 84) (name GND) (type power_in))
(pin (num 85) (name IOT_80) (type BiDi))
(pin (num 86) (name IOT_81) (type BiDi))
(pin (num 87) (name IOT_82) (type BiDi))
(pin (num 88) (name VCCIO_0) (type power_in))
(pin (num 89) (name IOT_84_GBIN1) (type BiDi))
(pin (num 90) (name IOT_85_GBIN0) (type BiDi))
(pin (num 91) (name IOT_86) (type BiDi))
(pin (num 92) (name VCCIO_0) (type power_in))
(pin (num 93) (name IOT_87) (type BiDi))
(pin (num 94) (name IOT_88) (type BiDi))
(pin (num 95) (name IOT_89) (type BiDi))
(pin (num 96) (name IOT_90) (type BiDi))
(pin (num 97) (name IOT_91) (type BiDi))
(pin (num 98) (name GND) (type power_in))
(pin (num 99) (name IOT_93) (type BiDi))
(pin (num 100) (name IOT_95) (type BiDi))))
(libpart (lib OLIMEX_IC) (part "K6R4016V1D-TC10(TSOP-44)")
(description "256Kx16 Bit High Speed Static RAM(3.3V Operating)")
(docs https://www.olimex.com/Products/_resources/ds_k6r4016v1d_rev40.pdf)
(footprints
(fp *44TSOP1*)
(fp *44TSOP3*))
(fields
(field (name Reference) U)
(field (name Value) "K6R4016V1D-TC10(TSOP-44)"))
(pins
(pin (num 1) (name A0) (type input))
(pin (num 2) (name A1) (type input))
(pin (num 3) (name A2) (type input))
(pin (num 4) (name A3) (type input))
(pin (num 5) (name A4) (type input))
(pin (num 6) (name CS#) (type input))
(pin (num 7) (name I/O0) (type BiDi))
(pin (num 8) (name I/O1) (type BiDi))
(pin (num 9) (name I/O2) (type BiDi))
(pin (num 10) (name I/O3) (type BiDi))
(pin (num 11) (name VDD) (type power_in))
(pin (num 12) (name VSS) (type power_in))
(pin (num 13) (name I/O4) (type BiDi))
(pin (num 14) (name I/O5) (type BiDi))
(pin (num 15) (name I/O6) (type BiDi))
(pin (num 16) (name I/O7) (type BiDi))
(pin (num 17) (name WE#) (type input))
(pin (num 18) (name A5) (type input))
(pin (num 19) (name A6) (type input))
(pin (num 20) (name A7) (type input))
(pin (num 21) (name A8) (type input))
(pin (num 22) (name A9) (type input))
(pin (num 23) (name A10) (type input))
(pin (num 24) (name A11) (type input))
(pin (num 25) (name A12) (type input))
(pin (num 26) (name A13) (type input))
(pin (num 27) (name A14) (type input))
(pin (num 28) (name NC) (type NotConnected))
(pin (num 29) (name I/O8) (type BiDi))
(pin (num 30) (name I/O9) (type BiDi))
(pin (num 31) (name I/O10) (type BiDi))
(pin (num 32) (name I/O11) (type BiDi))
(pin (num 33) (name VDD) (type power_in))
(pin (num 34) (name VSS) (type power_in))
(pin (num 35) (name I/O12) (type BiDi))
(pin (num 36) (name I/O13) (type BiDi))
(pin (num 37) (name I/O14) (type BiDi))
(pin (num 38) (name I/O15) (type BiDi))
(pin (num 39) (name BLE#) (type input))
(pin (num 40) (name BHE#) (type input))
(pin (num 41) (name OE#) (type input))
(pin (num 42) (name A15) (type input))
(pin (num 43) (name A16) (type input))
(pin (num 44) (name A17) (type input))))
(libpart (lib OLIMEX_RCL) (part L)
(fields
(field (name Reference) L)
(field (name Value) L))
(pins
(pin (num 1) (name 1) (type input))
(pin (num 2) (name 2) (type input))))
(libpart (lib OLIMEX_Diodes) (part LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) LED)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib OLIMEX_Devices) (part Oscillator-100MHZ_TXC-7W)
(footprints
(fp *OSCILLATOR*))
(fields
(field (name Reference) CR)
(field (name Value) Oscillator-100MHZ_TXC-7W))
(pins
(pin (num 1) (name E/D) (type input))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name OUT) (type output))
(pin (num 4) (name VDD) (type power_in))))
(libpart (lib OLIMEX_Connectors) (part PWR-JAKPWR_JACK_UNI_MILLING)
(footprints
(fp *PWR_JACK_UNI_MILLING*))
(fields
(field (name Reference) PWR)
(field (name Value) PWR-JAKPWR_JACK_UNI_MILLING))
(pins
(pin (num +) (name +) (type passive))
(pin (num -) (name -) (type passive))))
(libpart (lib OLIMEX_RCL) (part R)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib OLIMEX_Jumpers) (part SJ)
(footprints
(fp *SJ*)
(fp *SJ-CLOSE*)
(fp *SJ_1_SMALLER_CLOSE*)
(fp *SJ_1_SMALLER_CLOSE_10MILS*)
(fp *SJ_1_THE_SMALLEST*)
(fp *SJ_1_SMALLER*)
(fp *SJW*))
(fields
(field (name Reference) SJ)
(field (name Value) SJ)
(field (name Footprint) jumper_SJ))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib OLIMEX_Diodes) (part SMBJ6.0A)
(footprints
(fp *DO214AA*))
(fields
(field (name Reference) D)
(field (name Value) SMBJ6.0A))
(pins
(pin (num A) (name A) (type passive))
(pin (num C) (name C) (type passive))))
(libpart (lib OLIMEX_IC) (part "SY8009AAAC(SOT23-5)")
(footprints
(fp *SOT23-5*))
(fields
(field (name Reference) U)
(field (name Value) "SY8009AAAC(SOT23-5)"))
(pins
(pin (num 1) (name EN) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name LX) (type output))
(pin (num 4) (name IN) (type input))
(pin (num 5) (name FB) (type input))))
(libpart (lib OLIMEX_Buttons) (part "T1107A(6x3,8x2,5MM)")
(fields
(field (name Reference) SW)
(field (name Value) "T1107A(6x3,8x2,5MM)"))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib OLIMEX_OTHER) (part TESTPAD)
(footprints
(fp *TEST_PAD40/70/SQUARE*)
(fp *TESTPAD50/80*)
(fp *TESPAD28/40*)
(fp *TESTPAD32/56*)
(fp *TESTPAD34/60*)
(fp *TESTPAD311_1*)
(fp *TESTPAD40/66/SQUARE*)
(fp *TESTPAD40/66*)
(fp *TESTPAD*)
(fp *TESTPAD2*)
(fp *TESTPAD43/80*)
(fp *SMD50/40*)
(fp *TESTPAD50/80*)
(fp *TESTPAD50/80_SQUARE*)
(fp *TESTPAD60/110*)
(fp *TESTPAD311*)
(fp *SMD80/30*)
(fp *SMD80/40*)
(fp *SMD80/50*)
(fp *TESTPAD80/130*)
(fp *TESTPAD90/69*)
(fp *SMD100/40*)
(fp *TESTPAD100/150*)
(fp *SMD250/80*)
(fp *TESTPAD40/OBLONG*)
(fp *TESTPAD_RPM*)
(fp *TESTPAD60/90_WITHOUT_MASK*))
(fields
(field (name Reference) TESTPAD)
(field (name Value) TESTPAD))
(pins
(pin (num 1) (name Pad) (type passive))))
(libpart (lib OLIMEX_IC) (part W25Q16BV)
(fields
(field (name Reference) U)
(field (name Value) W25Q16BV))
(pins
(pin (num 1) (name "#CS") (type passive))
(pin (num 2) (name "DO(IO1)") (type passive))
(pin (num 3) (name "#WP(IO2)") (type passive))
(pin (num 4) (name GND) (type passive))
(pin (num 5) (name "DI(IO0)") (type passive))
(pin (num 6) (name CLK) (type passive))
(pin (num 7) (name "#HOLD(IO3)") (type passive))
(pin (num 8) (name VCC) (type passive)))))
(libraries
(library (logical OLIMEX_Connectors)
(uri /home/penko/SVN_Checkout/KiCAD_Components/OLIMEX_Connectors.lib))
(library (logical OLIMEX_OTHER)
(uri /home/penko/SVN_Checkout/KiCAD_Components/OLIMEX_OTHER.lib))
(library (logical OLIMEX_Buttons)
(uri /home/penko/SVN_Checkout/KiCAD_Components/OLIMEX_Buttons.lib))
(library (logical OLIMEX_Devices)
(uri /home/penko/SVN_Checkout/KiCAD_Components/OLIMEX_Devices.lib))
(library (logical OLIMEX_RCL)
(uri /home/penko/SVN_Checkout/KiCAD_Components/OLIMEX_RCL.lib))
(library (logical OLIMEX_Diodes)
(uri /home/penko/SVN_Checkout/KiCAD_Components/OLIMEX_Diodes.lib))
(library (logical OLIMEX_IC)
(uri /home/penko/SVN_Checkout/KiCAD_Components/OLIMEX_IC.lib))
(library (logical OLIMEX_Jumpers)
(uri /home/penko/SVN_Checkout/KiCAD_Components/OLIMEX_Jumpers.lib)))
(nets
(net (code 1) (name +3V3)
(node (ref C25) (pin 2))
(node (ref D2) (pin 2))
(node (ref C23) (pin 2))
(node (ref C18) (pin 2))
(node (ref 3.3V_E1) (pin 2))
(node (ref U4) (pin 22))
(node (ref R17) (pin 1))
(node (ref GPIO1) (pin 3))
(node (ref U5) (pin 33))
(node (ref U5) (pin 11))
(node (ref U4) (pin 14))
(node (ref U4) (pin 92))
(node (ref U4) (pin 67))
(node (ref U4) (pin 38))
(node (ref U4) (pin 58))
(node (ref U4) (pin 88))
(node (ref L1) (pin 1))
(node (ref U4) (pin 50))
(node (ref U4) (pin 31))
(node (ref C7) (pin 2))
(node (ref R15) (pin 2))
(node (ref R16) (pin 2))
(node (ref C27) (pin 2))
(node (ref C28) (pin 2))
(node (ref C9) (pin 2))
(node (ref C14) (pin 2))
(node (ref CR1) (pin 4))
(node (ref C4) (pin 2))
(node (ref R2) (pin 2))
(node (ref C16) (pin 2))
(node (ref CR1) (pin 1))
(node (ref C17) (pin 2))
(node (ref C15) (pin 2))
(node (ref C13) (pin 2))
(node (ref C21) (pin 2))
(node (ref C22) (pin 2))
(node (ref R11) (pin 1))
(node (ref C3) (pin 2))
(node (ref U1) (pin 8))
(node (ref R1) (pin 2))
(node (ref R4) (pin 2))
(node (ref U4) (pin 6))
(node (ref R5) (pin 2)))
(net (code 2) (name +1V2)
(node (ref C12) (pin 2))
(node (ref C26) (pin 2))
(node (ref C11) (pin 2))
(node (ref C10) (pin 2))
(node (ref C24) (pin 2))
(node (ref R7) (pin 2))
(node (ref L2) (pin 1))
(node (ref U4) (pin 61))
(node (ref C8) (pin 2))
(node (ref U4) (pin 11))
(node (ref U4) (pin 35))
(node (ref U4) (pin 77)))
(net (code 3) (name "Net-(CDone1-Pad1)")
(node (ref CDone1) (pin 1))
(node (ref R3) (pin 1)))
(net (code 4) (name "Net-(R4-Pad1)")
(node (ref R9) (pin 2))
(node (ref R4) (pin 1))
(node (ref U1) (pin 1)))
(net (code 5) (name "Net-(R11-Pad2)")
(node (ref U1) (pin 3))
(node (ref R11) (pin 2))
(node (ref U1) (pin 7)))
(net (code 6) (name "Net-(CR1-Pad3)")
(node (ref R10) (pin 2))
(node (ref CR1) (pin 3))
(node (ref R18) (pin 2)))
(net (code 7) (name /EXTCLK)
(node (ref R18) (pin 1))
(node (ref GPIO1) (pin 6)))
(net (code 8) (name GND)
(node (ref GPIO1) (pin 4))
(node (ref U5) (pin 34))
(node (ref U5) (pin 40))
(node (ref U5) (pin 12))
(node (ref C4) (pin 1))
(node (ref U4) (pin 23))
(node (ref U4) (pin 32))
(node (ref U4) (pin 84))
(node (ref CR1) (pin 2))
(node (ref U5) (pin 39))
(node (ref C3) (pin 1))
(node (ref R6) (pin 2))
(node (ref R13) (pin 2))
(node (ref U4) (pin 5))
(node (ref R14) (pin 2))
(node (ref U4) (pin 70))
(node (ref GPIO1) (pin 2))
(node (ref C23) (pin 1))
(node (ref PWR1) (pin -))
(node (ref C25) (pin 1))
(node (ref C26) (pin 1))
(node (ref C12) (pin 1))
(node (ref C14) (pin 1))
(node (ref C18) (pin 1))
(node (ref C17) (pin 1))
(node (ref C11) (pin 1))
(node (ref C21) (pin 1))
(node (ref C22) (pin 1))
(node (ref C24) (pin 1))
(node (ref C13) (pin 1))
(node (ref C15) (pin 1))
(node (ref U1) (pin 4))
(node (ref R3) (pin 2))
(node (ref PWRLED1) (pin 1))
(node (ref D1) (pin A))
(node (ref U4) (pin 47))
(node (ref U4) (pin 17))
(node (ref U4) (pin 39))
(node (ref U4) (pin 98))
(node (ref PGM1) (pin 2))
(node (ref U4) (pin 55))
(node (ref C6) (pin 1))
(node (ref C16) (pin 1))
(node (ref GPIO1) (pin 8))
(node (ref C1) (pin 1))
(node (ref C5) (pin 1))
(node (ref C8) (pin 1))
(node (ref R8) (pin 2))
(node (ref C20) (pin 1))
(node (ref BUT2) (pin 2))
(node (ref C19) (pin 1))
(node (ref RESET1) (pin 2))
(node (ref BUT1) (pin 2))