-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathh9kx3.net
1272 lines (1272 loc) · 44.3 KB
/
h9kx3.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source /Users/crowx/projekty/h9/hw/h9kx3/h9kx3.sch)
(date "czwartek, 09 maja 2019 18:47:25")
(tool "Eeschema 4.0.6")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title h9kx3)
(company SQ8KFH)
(rev 0.1)
(date 2019-05-03)
(source h9kx3.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref U5)
(value MCP2551-I/SN)
(footprint Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm)
(libsource (lib interface) (part MCP2551-I/SN))
(sheetpath (names /) (tstamps /))
(tstamp 594D3DD8))
(comp (ref J9)
(value CAN)
(footprint kfhlib:DB9FC-DHP8-7.2mm)
(libsource (lib conn) (part DB9_FEMALE_MountingHoles))
(sheetpath (names /) (tstamps /))
(tstamp 594D416E))
(comp (ref CON1)
(value AVR-ISP-6)
(footprint Connectors:IDC_Header_Straight_6pins)
(libsource (lib atmel) (part AVR-ISP-6))
(sheetpath (names /) (tstamps /))
(tstamp 594D42C3))
(comp (ref Y1)
(value Crystal)
(footprint Crystals:Crystal_HC49-U_Vertical)
(libsource (lib device) (part Crystal))
(sheetpath (names /) (tstamps /))
(tstamp 594D44D6))
(comp (ref D7)
(value NUP2105)
(footprint TO_SOT_Packages_SMD:SOT-23_Handsoldering)
(libsource (lib device) (part D_TVS_x2_AAC))
(sheetpath (names /) (tstamps /))
(tstamp 594D531B))
(comp (ref C18)
(value 100n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594D677E))
(comp (ref C4)
(value 100n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594D7482))
(comp (ref C2)
(value 100n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594D7912))
(comp (ref C8)
(value 22p)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594D8800))
(comp (ref C9)
(value 22p)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594D88BD))
(comp (ref R26)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594D95EF))
(comp (ref R21)
(value 220R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594E26B3))
(comp (ref U4)
(value LM7805CT)
(footprint TO_SOT_Packages_SMD:TO-263-3Lead)
(libsource (lib regul) (part LM7805CT))
(sheetpath (names /) (tstamps /))
(tstamp 594E383C))
(comp (ref D6)
(value S1A)
(footprint Diodes_SMD:SMA_Handsoldering)
(libsource (lib device) (part D_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594E4200))
(comp (ref C13)
(value 100u)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-D_EIA-7343-31_Hand)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594EDD48))
(comp (ref C14)
(value 100u)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-C_EIA-6032-28_Hand)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594EE03C))
(comp (ref C15)
(value 100n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594EE0E5))
(comp (ref C12)
(value 100n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 594EE1A6))
(comp (ref J8)
(value PTT_POWERON_OUT)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
(libsource (lib conn) (part CONN_COAXIAL))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC0D86))
(comp (ref J7)
(value KEYLINE_OUT)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
(libsource (lib conn) (part CONN_COAXIAL))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC0E0B))
(comp (ref J6)
(value INH_IN)
(footprint Pin_Headers:Pin_Header_Straight_1x02_Pitch2.54mm)
(libsource (lib conn) (part CONN_COAXIAL))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC0E98))
(comp (ref J1)
(value ACC1)
(footprint kfhlib:LUMBERG_1503_XX)
(libsource (lib kfhlib) (part JACK_TRS_5PINS))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC10DB))
(comp (ref J3)
(value ACC1_PC)
(footprint kfhlib:LUMBERG_1503_XX)
(libsource (lib kfhlib) (part JACK_TRS_5PINS))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC11F4))
(comp (ref J4)
(value ACC2)
(footprint kfhlib:LUMBERG_1503_XX)
(libsource (lib kfhlib) (part JACK_TRS_5PINS))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC128A))
(comp (ref U2)
(value ATMEGA32M1-AU)
(footprint Housings_QFP:TQFP-32_7x7mm_Pitch0.8mm)
(libsource (lib atmel) (part ATMEGA32M1-AU))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC3AA7))
(comp (ref Q7)
(value BC817)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC53EA))
(comp (ref Q9)
(value BC817-40)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC59B9))
(comp (ref Q8)
(value BC817-40)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC5B38))
(comp (ref R33)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC5BEA))
(comp (ref R32)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC69A1))
(comp (ref R34)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC6A39))
(comp (ref Q1)
(value BC817-40)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC8326))
(comp (ref R6)
(value 220R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC850D))
(comp (ref D1)
(value 1N4148)
(footprint Diodes_SMD:D_MELF_Standard)
(libsource (lib device) (part D_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC8EB0))
(comp (ref R1)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCC94F7))
(comp (ref Q2)
(value BC817-40)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5CCCCF5C))
(comp (ref R19)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCCD92A))
(comp (ref C5)
(value 1n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCCE61F))
(comp (ref C17)
(value 1n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCD1FF2))
(comp (ref C16)
(value 1n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCD2697))
(comp (ref D5)
(value 1N4148)
(footprint Diodes_SMD:D_MELF_Standard)
(libsource (lib device) (part D_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCD371E))
(comp (ref R24)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCD3A64))
(comp (ref R16)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCD7FC5))
(comp (ref Q3)
(value BC817)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5CCDC3DB))
(comp (ref C7)
(value 1n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCDC561))
(comp (ref R25)
(value 220)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCDC6F3))
(comp (ref Q4)
(value BC817)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5CCDD808))
(comp (ref R28)
(value 220)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCDE530))
(comp (ref C6)
(value 1n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCDFA36))
(comp (ref C3)
(value 1n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCE8F25))
(comp (ref U3)
(value LM7810CT)
(footprint TO_SOT_Packages_THT:TO-220_Horizontal)
(libsource (lib regul) (part LM7810CT))
(sheetpath (names /) (tstamps /))
(tstamp 5CCF0E4F))
(comp (ref C11)
(value 100u)
(footprint Capacitors_Tantalum_SMD:CP_Tantalum_Case-D_EIA-7343-31_Hand)
(libsource (lib device) (part CP_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCF11F7))
(comp (ref C10)
(value 100n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCF12B7))
(comp (ref Q5)
(value BC817)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part BC817-40))
(sheetpath (names /) (tstamps /))
(tstamp 5CCF7DC2))
(comp (ref R29)
(value 220)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCF7DCE))
(comp (ref U1)
(value 74LS154)
(footprint Housings_SOIC:SOIC-24W_7.5x15.4mm_Pitch1.27mm)
(libsource (lib 74xx) (part 74LS154))
(sheetpath (names /) (tstamps /))
(tstamp 5CCFA304))
(comp (ref R2)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCFF9B6))
(comp (ref R3)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CCFFF5E))
(comp (ref R4)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD000F1))
(comp (ref R5)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD001C0))
(comp (ref R7)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00293))
(comp (ref R8)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD0042C))
(comp (ref R9)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00504))
(comp (ref R10)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD005EB))
(comp (ref R11)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD006CA))
(comp (ref R12)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD007AC))
(comp (ref R13)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00891))
(comp (ref R14)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00979))
(comp (ref R15)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00A65))
(comp (ref R17)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00B52))
(comp (ref R18)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00C43))
(comp (ref R20)
(value 270R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00D37))
(comp (ref J2)
(value BAND)
(footprint Pin_Headers:Pin_Header_Straight_2x16_Pitch2.54mm)
(libsource (lib conn) (part CONN_02X16))
(sheetpath (names /) (tstamps /))
(tstamp 5CD00F14))
(comp (ref J5)
(value 4BIT_BAND)
(footprint Pin_Headers:Pin_Header_Straight_1x06_Pitch2.54mm)
(libsource (lib conn) (part CONN_01X06))
(sheetpath (names /) (tstamps /))
(tstamp 5CD05D93))
(comp (ref D2)
(value STATUS)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5CD08886))
(comp (ref R22)
(value 220R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD09C79))
(comp (ref R23)
(value 220R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD09D81))
(comp (ref D3)
(value INH)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5CD0A3F8))
(comp (ref D4)
(value KEY)
(footprint LEDs:LED-3MM)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 5CD0A504))
(comp (ref Q6)
(value MMBT3906)
(footprint TO_SOT_Packages_SMD:SOT-23)
(libsource (lib transistors) (part MMBT3906))
(sheetpath (names /) (tstamps /))
(tstamp 5CD1B2F4))
(comp (ref R30)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD1C5DB))
(comp (ref R31)
(value 220R)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD1D014))
(comp (ref R27)
(value 10k)
(footprint Resistors_SMD:R_1206_HandSoldering)
(libsource (lib device) (part R_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD20AEC))
(comp (ref C1)
(value 100n)
(footprint Capacitors_SMD:C_1206_HandSoldering)
(libsource (lib device) (part C_Small))
(sheetpath (names /) (tstamps /))
(tstamp 5CD31E85)))
(libparts
(libpart (lib 74xx) (part 74LS154)
(description "Decoder 4 to 16")
(fields
(field (name Reference) U)
(field (name Value) 74LS154))
(pins
(pin (num 1) (name S0) (type output))
(pin (num 2) (name S1) (type output))
(pin (num 3) (name S2) (type output))
(pin (num 4) (name S3) (type output))
(pin (num 5) (name S4) (type output))
(pin (num 6) (name S5) (type output))
(pin (num 7) (name S6) (type output))
(pin (num 8) (name S7) (type output))
(pin (num 9) (name S8) (type output))
(pin (num 10) (name S9) (type output))
(pin (num 11) (name S10) (type output))
(pin (num 12) (name GND) (type power_in))
(pin (num 13) (name S11) (type output))
(pin (num 14) (name S12) (type output))
(pin (num 15) (name S13) (type input))
(pin (num 16) (name S14) (type output))
(pin (num 17) (name S15) (type output))
(pin (num 18) (name E0) (type input))
(pin (num 19) (name E1) (type input))
(pin (num 20) (name A3) (type input))
(pin (num 21) (name A2) (type input))
(pin (num 22) (name A1) (type input))
(pin (num 23) (name A0) (type input))
(pin (num 24) (name VCC) (type power_in))))
(libpart (lib atmel) (part ATMEGA16M1-AU)
(aliases
(alias ATMEGA32M1-AU)
(alias ATMEGA64M1-AU))
(description "TQFP32, 16k Flash, 1k SRAM, 512B EEPROM, CAN")
(docs http://www.atmel.com/Images/doc8209.pdf)
(footprints
(fp TQFP32))
(fields
(field (name Reference) U)
(field (name Value) ATMEGA16M1-AU)
(field (name Footprint) TQFP32))
(pins
(pin (num 1) (name "(PCINT18/PSCIN2/OC1A/MISO_A)PD2") (type BiDi))
(pin (num 2) (name "(PCINT19/TXD/TXLIN/OC0A/~SS~/MOSI_A)PD3") (type BiDi))
(pin (num 3) (name "(PCINT9/PSCIN1/OC1B/~SS_A~)PC1") (type BiDi))
(pin (num 4) (name VCC) (type power_in))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name "(PCINT10/T0/TXCAN)PC2") (type BiDi))
(pin (num 7) (name "(PCINT11/T1/ICP1B/RXCAN)PC3") (type BiDi))
(pin (num 8) (name "(PCINT0/MISO/PSCOUT2A)PB0") (type BiDi))
(pin (num 9) (name "(PCINT1/MOSI/PSCOUT2B)PB1") (type BiDi))
(pin (num 10) (name "(PCINT25/OC0B/XTAL1)PE1") (type BiDi))
(pin (num 11) (name "(PCINT26/ADC0/XTAL2)PE2") (type BiDi))
(pin (num 12) (name "(PCINT20/ADC1/RXD/RXLIN/ICP1A/SCK_A)PD4") (type BiDi))
(pin (num 13) (name "(PCINT21/ADC2/ACMP2)PD5") (type BiDi))
(pin (num 14) (name "(PCINT22/ADC3/INT0/ACMPN2)PD6") (type BiDi))
(pin (num 15) (name "(PCINT23/ACMP0)PD7") (type BiDi))
(pin (num 16) (name "(PCINT2/ADC5/INT1/ACMPN0)PB2") (type BiDi))
(pin (num 17) (name "(PCINT12/ADC8/ACMPN3/AMP1-)PC4") (type BiDi))
(pin (num 18) (name "(PCINT13/ADC9/ACMP3/AMP1+)PC5") (type BiDi))
(pin (num 19) (name AVCC) (type power_in))
(pin (num 20) (name AGND) (type power_in))
(pin (num 21) (name "AREF(ISRC)") (type power_in))
(pin (num 22) (name "(PCINT14/ADC10/ACMP1)PC6") (type BiDi))
(pin (num 23) (name "(PCINT3/AMP0-)PB3") (type BiDi))
(pin (num 24) (name "(PCINT4/AMP0+)PB4") (type BiDi))
(pin (num 25) (name "(PCINT15/D2A/AMP2+)PC7") (type BiDi))
(pin (num 26) (name "(PCINT5/ADC6/INT2/ACMPN1/AMP2-)PB5") (type BiDi))
(pin (num 27) (name "(PCINT6/ADC7/PSCOUT1B)PB6") (type BiDi))
(pin (num 28) (name "(PCINT7/ADC4/SCK/PSCOUT0B)PB7") (type BiDi))
(pin (num 29) (name "(PCINT16/PSCOUT0A)PD0") (type BiDi))
(pin (num 30) (name "(PCINT8/INT3/PSCOUT1A)PC0") (type BiDi))
(pin (num 31) (name "(PCINT24/OCD/~RESET~)PE0") (type BiDi))
(pin (num 32) (name "(PCINT17/CLKO/PSCIN0)PD1") (type BiDi))))
(libpart (lib atmel) (part AVR-ISP-6)
(description "Standard IDC6 Male Connector, ATMEL ISP 6pin")
(fields
(field (name Reference) CON)
(field (name Value) AVR-ISP-6)
(field (name Footprint) AVR-ISP-6))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))
(pin (num 4) (name ~) (type passive))
(pin (num 5) (name ~) (type passive))
(pin (num 6) (name ~) (type passive))))
(libpart (lib transistors) (part BC817-40)
(aliases
(alias BC818-40))
(description "45V Vce, 0.8A Ic, NPN, SOT-23")
(docs http://www.fairchildsemi.com/ds/BC/BC817.pdf)
(footprints
(fp SOT-23*))
(fields
(field (name Reference) Q)
(field (name Value) BC817-40)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib conn) (part CONN_01X06)
(description "Connector, single row, 01x06, pin header")
(footprints
(fp Pin_Header_Straight_1X*)
(fp Pin_Header_Angled_1X*)
(fp Socket_Strip_Straight_1X*)
(fp Socket_Strip_Angled_1X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_01X06))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))))
(libpart (lib conn) (part CONN_02X16)
(description "Connector, double row, 02x16, pin header")
(footprints
(fp Pin_Header_Straight_2X*)
(fp Pin_Header_Angled_2X*)
(fp Socket_Strip_Straight_2X*)
(fp Socket_Strip_Angled_2X*))
(fields
(field (name Reference) J)
(field (name Value) CONN_02X16))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))
(pin (num 23) (name P23) (type passive))
(pin (num 24) (name P24) (type passive))
(pin (num 25) (name P25) (type passive))
(pin (num 26) (name P26) (type passive))
(pin (num 27) (name P27) (type passive))
(pin (num 28) (name P28) (type passive))
(pin (num 29) (name P29) (type passive))
(pin (num 30) (name P30) (type passive))
(pin (num 31) (name P31) (type passive))
(pin (num 32) (name P32) (type passive))))
(libpart (lib conn) (part CONN_COAXIAL)
(description "coaxial connector (BNC, SMA, SMB, SMC, Cinch/RCA, ...)")
(footprints
(fp *BNC*)
(fp *SMA*)
(fp *SMB*)
(fp *SMC*)
(fp *Cinch*))
(fields
(field (name Reference) J)
(field (name Value) CONN_COAXIAL))
(pins
(pin (num 1) (name In) (type passive))
(pin (num 2) (name Ext) (type passive))))
(libpart (lib device) (part CP_Small)
(description "Polarised capacitor")
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part C_Small)
(description "Unpolarized capacitor")
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part Crystal)
(description "Two pin crystal")
(footprints
(fp Crystal*))
(fields
(field (name Reference) Y)
(field (name Value) Crystal))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib conn) (part DB9_FEMALE_MountingHoles)
(description "9-pin female D-SUB connector, Mounting Hole")
(footprints
(fp DB*F*))
(fields
(field (name Reference) J)
(field (name Value) DB9_FEMALE_MountingHoles))
(pins
(pin (num 0) (name PAD) (type passive))
(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))))
(libpart (lib device) (part D_Small)
(description "Diode, small symbol")
(footprints
(fp TO-???*)
(fp *SingleDiode)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_Small))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib device) (part D_TVS_x2_AAC)
(description "Bidirectional dual transient-voltage-suppression (TVS) diode (center=pin3)")
(docs https://en.wikipedia.org/wiki/Transient-voltage-suppression_diode)
(fields
(field (name Reference) D)
(field (name Value) D_TVS_x2_AAC))
(pins
(pin (num 1) (name A1) (type passive))
(pin (num 2) (name A2) (type passive))
(pin (num 3) (name common) (type input))))
(libpart (lib kfhlib) (part JACK_TRS_5PINS)
(description "audio jack TRS 5 pins")
(fields
(field (name Reference) J)
(field (name Value) JACK_TRS_5PINS))
(pins
(pin (num 1) (name S) (type passive))
(pin (num 2) (name T) (type passive))
(pin (num 3) (name R) (type passive))
(pin (num 4) (name TN) (type passive))
(pin (num 5) (name RN) (type passive))))
(libpart (lib device) (part LED)
(description "LED generic")
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib regul) (part LM7805CT)
(aliases
(alias LM7806CT)
(alias LM7808CT)
(alias LM7809CT)
(alias LM7810CT)
(alias LM7812CT)
(alias LM7815CT)
(alias LM7818CT)
(alias LM7824CT)
(alias LM7806ACT)
(alias LM7808ACT)
(alias LM7809ACT)
(alias LM7810ACT)
(alias LM7812ACT)
(alias LM7815ACT)
(alias LM7818ACT)
(alias LM7824ACT))
(description "Positive 1A 35V Linear Regulator, Fixed Output 5V, TO-220")
(docs http://www.fairchildsemi.com/ds/LM/LM7805.pdf)
(footprints
(fp TO*))
(fields
(field (name Reference) U)
(field (name Value) LM7805CT)
(field (name Footprint) TO_SOT_Packages_THT:TO-220_Vertical))
(pins
(pin (num 1) (name IN) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name OUT) (type power_out))))
(libpart (lib interface) (part MCP2551-I/SN)
(description "High-Speed CAN Transceiver, 1Mbps, 5V supply, SOIC8 package")
(docs http://ww1.microchip.com/downloads/en/devicedoc/21667d.pdf)
(footprints
(fp SOIC*Pitch1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) MCP2551-I/SN)
(field (name Footprint) Housings_SOIC:SOIC-8_3.9x4.9mm_Pitch1.27mm))
(pins
(pin (num 1) (name TXD) (type input))
(pin (num 2) (name VSS) (type power_in))
(pin (num 3) (name VDD) (type power_in))
(pin (num 4) (name RXD) (type output))
(pin (num 5) (name Vref) (type power_out))
(pin (num 6) (name CANL) (type BiDi))
(pin (num 7) (name CANH) (type BiDi))
(pin (num 8) (name Rs) (type input))))
(libpart (lib transistors) (part MMBT3906)
(description "40V Vce, 0.2A Ic, PNP, Small Signal Transistor, SOT-23")
(docs http://www.nxp.com/documents/data_sheet/MMBT3906.pdf)
(footprints
(fp SOT-23*))
(fields
(field (name Reference) Q)
(field (name Value) MMBT3906)
(field (name Footprint) TO_SOT_Packages_SMD:SOT-23))
(pins
(pin (num 1) (name B) (type input))
(pin (num 2) (name E) (type passive))
(pin (num 3) (name C) (type passive))))
(libpart (lib device) (part R_Small)
(description "Resistor, small symbol")
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive)))))
(libraries
(library (logical device)
(uri "/Library/Application Support/kicad/library/device.lib"))
(library (logical transistors)
(uri "/Library/Application Support/kicad/library/transistors.lib"))
(library (logical conn)
(uri "/Library/Application Support/kicad/library/conn.lib"))
(library (logical regul)
(uri "/Library/Application Support/kicad/library/regul.lib"))
(library (logical 74xx)
(uri "/Library/Application Support/kicad/library/74xx.lib"))
(library (logical interface)
(uri "/Library/Application Support/kicad/library/interface.lib"))
(library (logical atmel)
(uri "/Library/Application Support/kicad/library/atmel.lib"))
(library (logical kfhlib)
(uri /Users/crowx/projekty/h9/hw/h9kx3/libs/kicad-kfhlib/kfhlib.lib)))
(nets
(net (code 1) (name /BAND_0)
(node (ref U1) (pin 23))
(node (ref U2) (pin 13))
(node (ref J5) (pin 1)))
(net (code 2) (name /BAND_1)
(node (ref U2) (pin 14))
(node (ref U1) (pin 22))
(node (ref J5) (pin 2)))
(net (code 3) (name /BAND_2)
(node (ref U2) (pin 15))
(node (ref U1) (pin 21))
(node (ref J5) (pin 3)))
(net (code 4) (name /BAND_3)
(node (ref U1) (pin 20))
(node (ref U2) (pin 16))
(node (ref J5) (pin 4)))
(net (code 5) (name +5V)
(node (ref C4) (pin 1))
(node (ref U5) (pin 3))
(node (ref CON1) (pin 2))
(node (ref R26) (pin 2))
(node (ref U4) (pin 3))
(node (ref U2) (pin 19))
(node (ref R16) (pin 1))
(node (ref C15) (pin 1))
(node (ref U2) (pin 4))
(node (ref C14) (pin 1))
(node (ref C18) (pin 2))
(node (ref R27) (pin 1))
(node (ref C1) (pin 2))
(node (ref J5) (pin 6))
(node (ref J2) (pin 29))
(node (ref J2) (pin 19))
(node (ref J2) (pin 27))
(node (ref J2) (pin 17))
(node (ref J2) (pin 25))
(node (ref J2) (pin 15))
(node (ref J2) (pin 23))
(node (ref J2) (pin 13))
(node (ref J2) (pin 31))
(node (ref J2) (pin 21))
(node (ref U1) (pin 24))
(node (ref J2) (pin 11))
(node (ref J2) (pin 9))
(node (ref J2) (pin 7))
(node (ref J2) (pin 5))
(node (ref J2) (pin 3))
(node (ref J2) (pin 1))
(node (ref C2) (pin 2))
(node (ref R1) (pin 1))
(node (ref R19) (pin 1)))
(net (code 6) (name GND)
(node (ref J1) (pin 1))
(node (ref J6) (pin 2))
(node (ref J7) (pin 2))
(node (ref J8) (pin 2))
(node (ref J3) (pin 1))
(node (ref J5) (pin 5))
(node (ref J4) (pin 1))
(node (ref C5) (pin 2))
(node (ref Q2) (pin 2))
(node (ref D1) (pin 2))
(node (ref Q1) (pin 2))
(node (ref Q8) (pin 2))
(node (ref Q9) (pin 2))
(node (ref Q3) (pin 2))
(node (ref U5) (pin 8))
(node (ref C16) (pin 2))
(node (ref U5) (pin 2))
(node (ref C8) (pin 1))
(node (ref C9) (pin 1))
(node (ref C18) (pin 1))
(node (ref D7) (pin 3))
(node (ref CON1) (pin 6))
(node (ref C4) (pin 2))
(node (ref U4) (pin 2))
(node (ref C2) (pin 1))
(node (ref J9) (pin 6))
(node (ref J9) (pin 3))
(node (ref C17) (pin 2))
(node (ref C12) (pin 2))
(node (ref C15) (pin 2))
(node (ref C14) (pin 2))
(node (ref C13) (pin 2))
(node (ref U2) (pin 20))
(node (ref U2) (pin 5))
(node (ref Q7) (pin 2))
(node (ref C6) (pin 2))
(node (ref Q5) (pin 2))
(node (ref C10) (pin 2))
(node (ref D2) (pin 1))
(node (ref D3) (pin 1))
(node (ref D4) (pin 1))
(node (ref U1) (pin 18))
(node (ref U1) (pin 19))
(node (ref U1) (pin 12))
(node (ref C3) (pin 2))
(node (ref U3) (pin 2))
(node (ref C11) (pin 2))
(node (ref C7) (pin 2))
(node (ref Q4) (pin 2))
(node (ref C1) (pin 1)))
(net (code 7) (name "Net-(R14-Pad1)")
(node (ref R14) (pin 1))
(node (ref U1) (pin 13)))
(net (code 8) (name "Net-(R15-Pad1)")
(node (ref R15) (pin 1))
(node (ref U1) (pin 14)))
(net (code 9) (name "Net-(R17-Pad1)")
(node (ref R17) (pin 1))
(node (ref U1) (pin 15)))
(net (code 10) (name "Net-(R18-Pad1)")
(node (ref R18) (pin 1))
(node (ref U1) (pin 16)))
(net (code 11) (name "Net-(R20-Pad1)")
(node (ref R20) (pin 1))
(node (ref U1) (pin 17)))
(net (code 12) (name "Net-(J2-Pad30)")
(node (ref R18) (pin 2))