-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project_GP8B.net
2883 lines (2883 loc) · 114 KB
/
Project_GP8B.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 C:\Users\guill\Desktop\Creation\Github\GP8B\Project_GP8B.sch)
(date "05.03.2021 11:56:10")
(tool "Eeschema (5.1.8)-1")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title GP8B)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-03-04)
(source Project_GP8B.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Operation/) (tstamps /5AA18AD6/)
(title_block
(title GP8B)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-03-04)
(source fileOperation.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /NumberSelect/) (tstamps /5AC5DCFF/)
(title_block
(title GP8B)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-03-04)
(source fileNumberSelect.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /Register/) (tstamps /5ACA3361/)
(title_block
(title GP8B)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-03-04)
(source fileRegister.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name /RAM/) (tstamps /5B0E1E98/)
(title_block
(title GP8B)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-03-04)
(source fileRAM.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name /Instruction/) (tstamps /5ABE9197/)
(title_block
(title GP8B)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-03-04)
(source fileInstruction.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /SPI/) (tstamps /5DD53CC6/)
(title_block
(title GP8B)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-03-04)
(source fileSPI.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name /Connector/) (tstamps /5B11F21F/)
(title_block
(title GP8B)
(company "Guillaume Guillet")
(rev V5.1)
(date 2021-03-04)
(source fileConnector.sch)
(comment (number 1) (value "Copyright Guillaume Guillet 2021"))
(comment (number 2) (value "Licensed under CERN-OHL-W v2 or later"))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref C3)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 593930F6))
(comp (ref R3)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B0C581A))
(comp (ref C2)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B1011B0))
(comp (ref C1)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5B10993F))
(comp (ref R1)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B10995A))
(comp (ref R2)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 5B126823))
(comp (ref U2)
(value 74AHC05)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(libsource (lib Custom) (part 74AHC05) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C924CE3))
(comp (ref U1)
(value 74AHC05)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(libsource (lib Custom) (part 74AHC05) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C9312E3))
(comp (ref U5)
(value 74AHC05)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(libsource (lib Custom) (part 74AHC05) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5C936C17))
(comp (ref H1)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EDCBA8D))
(comp (ref H3)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EDCBFB2))
(comp (ref H4)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EDCC33B))
(comp (ref H2)
(value MountingHole_3mm)
(footprint MountingHole:MountingHole_3mm)
(datasheet ~)
(libsource (lib Mechanical) (part MountingHole) (description "Mounting Hole without connection"))
(sheetpath (names /) (tstamps /))
(tstamp 5EDCC719))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 604EFD65))
(comp (ref U3)
(value 74AHC1G02)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G02.pdf)
(libsource (lib Custom) (part 74AHC1G02) (description "Single NOR Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 605F1C2D))
(comp (ref R7)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /) (tstamps /))
(tstamp 60507EBE))
(comp (ref U4)
(value 74AHC1G08)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G08.pdf)
(libsource (lib Custom) (part 74AHC1G08) (description "Single AND Gate, AHCMOS"))
(sheetpath (names /) (tstamps /))
(tstamp 6044588B))
(comp (ref C46)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60540AE9))
(comp (ref C47)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 60540DD5))
(comp (ref C28)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5D0A10C9))
(comp (ref C32)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5D0A5D6E))
(comp (ref C24)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5D0A7A52))
(comp (ref C9)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5D0A8B62))
(comp (ref C26)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5D0A9009))
(comp (ref C39)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5D0BCB45))
(comp (ref C20)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5D0BCE85))
(comp (ref C7)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5D0BD373))
(comp (ref IC1)
(value XC2C256-VQ100)
(footprint Package_QFP:VQFP-100_14x14mm_P0.5mm)
(libsource (lib FPGA_Xilinx) (part XC2C256-VQ100) (description "CoolRunner-II CPLD, 256 macrocells, VQFP-100"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5ECADF9D))
(comp (ref J4)
(value UnusedPins_Connector)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x15_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x15_Odd_Even) (description "Generic connector, double row, 02x15, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5F075135))
(comp (ref J5)
(value ALU_PINS)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x19_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x19_Odd_Even) (description "Generic connector, double row, 02x19, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5F09F273))
(comp (ref J1)
(value ALU_JTAG)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x06_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x06_Male) (description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5F0E2BDB))
(comp (ref U28)
(value TPS7A0518PDBZR)
(footprint Package_TO_SOT_SMD:SOT-23)
(libsource (lib Custom) (part TPS7A0518PDBZR) (description "200mA, 1.8V"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5F11297D))
(comp (ref C40)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5F1269DC))
(comp (ref C33)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5F1273A6))
(comp (ref U30)
(value SN74LVC8T245DW)
(footprint Package_SO:SOIC-24W_7.5x15.4mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn74lvc8t245.pdf)
(libsource (lib Custom) (part SN74LVC8T245DW) (description "8-Bit Dual-Supply Bus Transceiver With Configurable Voltage Translation and 3-State Outputs, SOIC-24"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5ECEC538))
(comp (ref C45)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5ED12454))
(comp (ref U32)
(value SN74AVC4T245D)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn74avc4t245.pdf)
(libsource (lib Custom) (part SN74AVC4T245D) (description "4-Bit Dual-Supply Bus Transceiver With Configurable Voltage Translation and 3-State Outputs, SOIC-16"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5EF08705))
(comp (ref C44)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Operation/) (tstamps /5AA18AD6/))
(tstamp 5EF7425E))
(comp (ref C17)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5AC5EEE5))
(comp (ref C15)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5AC5EEEC))
(comp (ref C18)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5AC5EF0E))
(comp (ref C14)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5AC5EF2A))
(comp (ref C19)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5AC5F030))
(comp (ref RN1)
(value 8x10k)
(footprint Resistor_THT:R_Array_SIP9)
(libsource (lib Device) (part R_Network08) (description "8 resistor network, star topology, bussed resistors, small symbol"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5B11F8A5))
(comp (ref C16)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5B195CD4))
(comp (ref U17)
(value 74AHC138)
(footprint Package_SO:SOIC-16W_5.3x10.2mm_P1.27mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS138)
(libsource (lib 74xx) (part 74LS138) (description "Decoder 3 to 8 active low outputs"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5CCDD99D))
(comp (ref U19)
(value 74AHCT244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHCT244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5D23C9B4))
(comp (ref U20)
(value 74AHCT244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHCT244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5D23F3AF))
(comp (ref U22)
(value 74AHCT244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHCT244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5D23F93D))
(comp (ref U21)
(value 74AHCT244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHCT244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5D24056A))
(comp (ref U23)
(value 74AHCT244)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT244.pdf)
(libsource (lib 74xx) (part 74AHCT244) (description "8-bit Buffer/Line Driver 3-state"))
(sheetpath (names /NumberSelect/) (tstamps /5AC5DCFF/))
(tstamp 5D242028))
(comp (ref C25)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5ACA3854))
(comp (ref C27)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5ACA385B))
(comp (ref C21)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5ACA391A))
(comp (ref C22)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5B0D389F))
(comp (ref U29)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5D390EB1))
(comp (ref U31)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5D39509C))
(comp (ref U33)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5D39584F))
(comp (ref U26)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5D398A57))
(comp (ref U24)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5D39B5A9))
(comp (ref U27)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5D39CA83))
(comp (ref C23)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5ACA3921))
(comp (ref C29)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Register/) (tstamps /5ACA3361/))
(tstamp 5ACA3877))
(comp (ref C36)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5B0E7716))
(comp (ref C38)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5B0E7789))
(comp (ref C34)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5B10C7E9))
(comp (ref C35)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5B10CD5C))
(comp (ref RN2)
(value 8x10k)
(footprint Resistor_THT:R_Array_SIP9)
(libsource (lib Device) (part R_Network08) (description "8 resistor network, star topology, bussed resistors, small symbol"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5B165CF0))
(comp (ref J3)
(value MM1_5530843-2)
(footprint TE5530843-2:TE_5530843-2)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_02x15_Odd_Even) (description "Generic connector, double row, 02x15, odd/even pin numbering scheme (row 1 odd numbers, row 2 even numbers), script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5CACB6E2))
(comp (ref C37)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5B1039A0))
(comp (ref U38)
(value 74AHC374)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT374.pdf)
(libsource (lib 74xx) (part 74AHC374) (description "8-bit Register, 3-state outputs"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5D158179))
(comp (ref U35)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5D16111A))
(comp (ref U37)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5D1645B2))
(comp (ref U36)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5F3BE90E))
(comp (ref U39)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5F3D1A99))
(comp (ref U34)
(value 74LVC1G34)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74LVC1G34.pdf)
(libsource (lib Custom) (part 74LVC1G34) (description "Single Buffef Gate, Low-Voltage CMOS"))
(sheetpath (names /RAM/) (tstamps /5B0E1E98/))
(tstamp 5F4C25E9))
(comp (ref C4)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5ABF431E))
(comp (ref C6)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5ABF4336))
(comp (ref C10)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5ABF4355))
(comp (ref C8)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5ABF43CB))
(comp (ref C5)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5ABF43F7))
(comp (ref C13)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5AC11192))
(comp (ref C11)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5AC11205))
(comp (ref C12)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5B0827DC))
(comp (ref U8)
(value 74HC163)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/gpn/sn74LS163)
(libsource (lib 74xx) (part 74LS163) (description "Synchronous 4-bit programmable binary Counter"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5CF6F00D))
(comp (ref U14)
(value 74AHC08)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(libsource (lib Custom) (part 74AHC08) (description ""))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5D0B26DE))
(comp (ref U16)
(value 74AHC08)
(footprint Package_SO:SOIC-14_3.9x8.7mm_P1.27mm)
(libsource (lib Custom) (part 74AHC08) (description ""))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5D0B7572))
(comp (ref U7)
(value 74AHCT273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHCT273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5CF8D93F))
(comp (ref U10)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5F45EA07))
(comp (ref U12)
(value 74AHC1G04)
(footprint Package_TO_SOT_SMD:SOT-23-5)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT1G04.pdf)
(libsource (lib Custom) (part 74AHC1G04) (description "Single NOT Gate, AHCMOS"))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5F4645F0))
(comp (ref U9)
(value CD74AC238)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(libsource (lib Custom) (part CD74AC238) (description ""))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5F387684))
(comp (ref U13)
(value CD74AC238)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(libsource (lib Custom) (part CD74AC238) (description ""))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5F380BA2))
(comp (ref U15)
(value CD74AC238)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(libsource (lib Custom) (part CD74AC238) (description ""))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5F381A1B))
(comp (ref U11)
(value CD74AC238)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(libsource (lib Custom) (part CD74AC238) (description ""))
(sheetpath (names /Instruction/) (tstamps /5ABE9197/))
(tstamp 5F383052))
(comp (ref U25)
(value 74AHCT595)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn74hc595.pdf)
(libsource (lib 74xx) (part 74HC595) (description "8-bit serial in/out Shift Register 3-State Outputs"))
(sheetpath (names /SPI/) (tstamps /5DD53CC6/))
(tstamp 5DD56883))
(comp (ref C41)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SPI/) (tstamps /5DD53CC6/))
(tstamp 5DD64D25))
(comp (ref U6)
(value 74AHC273)
(footprint Package_SO:SOIC-20W_7.5x12.8mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74AHC_AHCT273.pdf)
(libsource (lib 74xx) (part 74AHC273) (description "8-bit D Flip-Flop, reset"))
(sheetpath (names /SPI/) (tstamps /5DD53CC6/))
(tstamp 5DD64D4A))
(comp (ref C42)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SPI/) (tstamps /5DD53CC6/))
(tstamp 5DD8C9C7))
(comp (ref C43)
(value 10nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /SPI/) (tstamps /5DD53CC6/))
(tstamp 5DD91712))
(comp (ref U18)
(value 74HC166)
(footprint Package_SO:SOIC-16_3.9x9.9mm_P1.27mm)
(datasheet https://assets.nexperia.com/documents/data-sheet/74HC_HCT166.pdf)
(libsource (lib Custom) (part 74HC166) (description "Shift Register 8-bit, parallel load"))
(sheetpath (names /SPI/) (tstamps /5DD53CC6/))
(tstamp 60417A96))
(comp (ref R4)
(value 1k5)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 5B1B85C4))
(comp (ref D1)
(value GREEN_2.65V_2mA)
(footprint LED_SMD:LED_1206_3216Metric)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 5B1B85CB))
(comp (ref C30)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 5B0EB326))
(comp (ref C31)
(value 100nF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 5B0EB41C))
(comp (ref R5)
(value 470E)
(footprint Resistor_SMD:R_0805_2012Metric)
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 5B21A4F8))
(comp (ref D2)
(value GREEN_2.65V_2mA)
(footprint LED_SMD:LED_1206_3216Metric)
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 5B21A63F))
(comp (ref J2)
(value TE_Eurocard_96pole)
(footprint Eurocard_5536475-1:Eurocard_5536475-1)
(datasheet ~)
(libsource (lib Custom) (part TE_Eurocard_96pole) (description TE))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 5C9A234B))
(comp (ref C48)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 604AD9B5))
(comp (ref C49)
(value 1uF)
(footprint Capacitor_SMD:C_0805_2012Metric)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /Connector/) (tstamps /5B11F21F/))
(tstamp 604ADC9D)))
(libparts
(libpart (lib 74xx) (part 74HC244)
(aliases
(alias 74HCT244)
(alias 74AHC244)
(alias 74AHCT244))
(description "8-bit Buffer/Line Driver 3-state")
(docs https://assets.nexperia.com/documents/data-sheet/74HC_HCT244.pdf)
(footprints
(fp TSSOP*4.4x6.5mm*P0.65mm*)
(fp SSOP*4.4x6.5mm*P0.65mm*))
(fields
(field (name Reference) U)
(field (name Value) 74HC244))
(pins
(pin (num 1) (name 1OE) (type input))
(pin (num 2) (name 1A0) (type input))
(pin (num 3) (name 2Y0) (type 3state))
(pin (num 4) (name 1A1) (type input))
(pin (num 5) (name 2Y1) (type 3state))
(pin (num 6) (name 1A2) (type input))
(pin (num 7) (name 2Y2) (type 3state))
(pin (num 8) (name 1A3) (type input))
(pin (num 9) (name 2Y3) (type 3state))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name 2A3) (type input))
(pin (num 12) (name 1Y3) (type 3state))
(pin (num 13) (name 2A2) (type input))
(pin (num 14) (name 1Y2) (type 3state))
(pin (num 15) (name 2A1) (type input))
(pin (num 16) (name 1Y1) (type 3state))
(pin (num 17) (name 2A0) (type input))
(pin (num 18) (name 1Y0) (type 3state))
(pin (num 19) (name 2OE) (type input))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74HC595)
(aliases
(alias 74LS595)
(alias 74HCT595)
(alias 74AHC595)
(alias 74AHCT595))
(description "8-bit serial in/out Shift Register 3-State Outputs")
(docs http://www.ti.com/lit/ds/symlink/sn74hc595.pdf)
(footprints
(fp DIP*W7.62mm*)
(fp SOIC*3.9x9.9mm*P1.27mm*)
(fp TSSOP*4.4x5mm*P0.65mm*)
(fp SOIC*5.3x10.2mm*P1.27mm*)
(fp SOIC*7.5x10.3mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) 74HC595))
(pins
(pin (num 1) (name QB) (type 3state))
(pin (num 2) (name QC) (type 3state))
(pin (num 3) (name QD) (type 3state))
(pin (num 4) (name QE) (type 3state))
(pin (num 5) (name QF) (type 3state))
(pin (num 6) (name QG) (type 3state))
(pin (num 7) (name QH) (type 3state))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name QH') (type output))
(pin (num 10) (name ~SRCLR) (type input))
(pin (num 11) (name SRCLK) (type input))
(pin (num 12) (name RCLK) (type input))
(pin (num 13) (name ~OE) (type input))
(pin (num 14) (name SER) (type input))
(pin (num 15) (name QA) (type 3state))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS138)
(description "Decoder 3 to 8 active low outputs")
(docs http://www.ti.com/lit/gpn/sn74LS138)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS138))
(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 E1) (type input))
(pin (num 5) (name E2) (type input))
(pin (num 6) (name E3) (type input))
(pin (num 7) (name O7) (type output))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name O6) (type output))
(pin (num 10) (name O5) (type output))
(pin (num 11) (name O4) (type output))
(pin (num 12) (name O3) (type output))
(pin (num 13) (name O2) (type output))
(pin (num 14) (name O1) (type output))
(pin (num 15) (name O0) (type output))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS161)
(aliases
(alias 74LS160)
(alias 74LS162)
(alias 74LS163))
(description "Synchronous 4-bit programmable binary Counter")
(docs http://www.ti.com/lit/gpn/sn74LS161)
(footprints
(fp DIP?16*))
(fields
(field (name Reference) U)
(field (name Value) 74LS161))
(pins
(pin (num 1) (name ~MR) (type input))
(pin (num 2) (name CP) (type input))
(pin (num 3) (name D0) (type input))
(pin (num 4) (name D1) (type input))
(pin (num 5) (name D2) (type input))
(pin (num 6) (name D3) (type input))
(pin (num 7) (name CEP) (type input))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name ~PE) (type input))
(pin (num 10) (name CET) (type input))
(pin (num 11) (name Q3) (type output))
(pin (num 12) (name Q2) (type output))
(pin (num 13) (name Q1) (type output))
(pin (num 14) (name Q0) (type output))
(pin (num 15) (name TC) (type output))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS273)
(aliases
(alias 74HC273)
(alias 74HCT273)
(alias 74AHC273)
(alias 74AHCT273))
(description "8-bit D Flip-Flop, reset")
(docs http://www.ti.com/lit/gpn/sn74LS273)
(footprints
(fp DIP?20*)
(fp SO?20*)
(fp SOIC?20*))
(fields
(field (name Reference) U)
(field (name Value) 74LS273))
(pins
(pin (num 1) (name ~Mr) (type input))
(pin (num 2) (name Q0) (type output))
(pin (num 3) (name D0) (type input))
(pin (num 4) (name D1) (type input))
(pin (num 5) (name Q1) (type output))
(pin (num 6) (name Q2) (type output))
(pin (num 7) (name D2) (type input))
(pin (num 8) (name D3) (type input))
(pin (num 9) (name Q3) (type output))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name Cp) (type input))
(pin (num 12) (name Q4) (type output))
(pin (num 13) (name D4) (type input))
(pin (num 14) (name D5) (type input))
(pin (num 15) (name Q5) (type output))
(pin (num 16) (name Q6) (type output))
(pin (num 17) (name D6) (type input))
(pin (num 18) (name D7) (type input))
(pin (num 19) (name Q7) (type output))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS374)
(aliases
(alias 74HC374)
(alias 74HCT374)
(alias 74AHC374)
(alias 74AHCT374))
(description "8-bit Register, 3-state outputs")
(docs http://www.ti.com/lit/gpn/sn74LS374)
(footprints
(fp DIP?20*)
(fp SOIC?20*)
(fp SO?20*))
(fields
(field (name Reference) U)
(field (name Value) 74LS374))
(pins
(pin (num 1) (name OE) (type input))
(pin (num 2) (name O0) (type 3state))
(pin (num 3) (name D0) (type input))
(pin (num 4) (name D1) (type input))
(pin (num 5) (name O1) (type 3state))
(pin (num 6) (name O2) (type 3state))
(pin (num 7) (name D2) (type input))
(pin (num 8) (name D3) (type input))
(pin (num 9) (name O3) (type 3state))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name Cp) (type input))
(pin (num 12) (name O4) (type 3state))
(pin (num 13) (name D4) (type input))
(pin (num 14) (name D5) (type input))
(pin (num 15) (name O5) (type 3state))
(pin (num 16) (name O6) (type 3state))
(pin (num 17) (name D6) (type input))
(pin (num 18) (name D7) (type input))
(pin (num 19) (name O7) (type 3state))
(pin (num 20) (name VCC) (type power_in))))
(libpart (lib Connector) (part Conn_01x06_Male)
(description "Generic connector, single row, 01x06, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x06_Male))
(pins