-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwideband_controller_mre.net
1165 lines (1165 loc) · 43.2 KB
/
wideband_controller_mre.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/kocur/wideband_controller_mre/wideband_controller_mre.sch)
(date Pi 19. november 2021, 23:01:39)
(tool "Eeschema 5.1.5+dfsg1-2build2")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "MRE addon board - WBO2 Controller & SD Card")
(company "by JRD McLAREN")
(rev V1.1)
(date 2021-11-19)
(source wideband_controller_mre.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /mcu_adc_mre_wbo2/) (tstamps /61A542DD/)
(title_block
(title "MRE addon board - WBO2 & SD")
(company "by JRD McLAREN")
(rev V1.1)
(date 2021-11-19)
(source mcu_adc_mre_wbo2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/)
(title_block
(title "MRE addon board - WBO2 & SD")
(company "by JRD McLAREN")
(rev V1.1)
(date 2021-11-19)
(source can_fet_conn_mre_wbo2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref R17)
(value 61.9)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C23092))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB087E2))
(comp (ref R2)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C11702))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB0FC27))
(comp (ref C1)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C52923))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB1294F))
(comp (ref C2)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1525))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB2AA98))
(comp (ref R22)
(value 22k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25768))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB2AF2C))
(comp (ref R13)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25744))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB31C23))
(comp (ref R14)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25744))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB335A9))
(comp (ref R15)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25741))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB37011))
(comp (ref R16)
(value 100k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25741))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB38FC0))
(comp (ref R12)
(value 47)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25118))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB3C02D))
(comp (ref R5)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25744))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EAE57CD))
(comp (ref R4)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25744))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EAE6382))
(comp (ref R7)
(value 27k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25771))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EAE6724))
(comp (ref R6)
(value 27k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25771))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EAE6A5D))
(comp (ref R3)
(value 10)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25077))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB371DE))
(comp (ref C4)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C52923))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB43469))
(comp (ref R21)
(value 20k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25765))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EF622BF))
(comp (ref U2)
(value MCP6004)
(footprint Package_SO:TSSOP-14_4.4x5mm_P0.65mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/21733j.pdf)
(fields
(field (name LCSC) C50282))
(libsource (lib wideband_controller_mre-rescue) (part MCP6004-Amplifier_Operational) (description ""))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5F8841DC))
(comp (ref C9)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1525))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5F9C7CF3))
(comp (ref C7)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C52923))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5F9C6F22))
(comp (ref C11)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1525))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FE80F0F))
(comp (ref R18)
(value 3.3k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25890))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FE81AAB))
(comp (ref C13)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1525))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 60140604))
(comp (ref C12)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1525))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 6014129F))
(comp (ref D2)
(value GREEN)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C72043))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 607B4B99))
(comp (ref R24)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C11702))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 607B4BA0))
(comp (ref R1)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C11702))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5EB0F879))
(comp (ref R10)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25744))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5F6F3B55))
(comp (ref R11)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25744))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5F6F4038))
(comp (ref R9)
(value 68k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C36871))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5F77EEDE))
(comp (ref R8)
(value 68k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C36871))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5F77F74C))
(comp (ref C3)
(value 33n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1585))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5F942576))
(comp (ref C5)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1525))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 602BC665))
(comp (ref U3)
(value AD8628)
(footprint Package_TO_SOT_SMD:TSOT-23-5)
(datasheet https://www.analog.com/media/en/technical-documentation/data-sheets/AD8603_8607_8609.pdf)
(fields
(field (name LCSC) C29309))
(libsource (lib wideband_controller_mre-rescue) (part AD8603-Amplifier_Operational) (description ""))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FBC4CB6))
(comp (ref R20)
(value 20k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25765))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FCED80F))
(comp (ref C6)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1525))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FDFC1BB))
(comp (ref R19)
(value 20k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25765))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 6036F37E))
(comp (ref D3)
(value BLUE)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C72041))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FC3F936))
(comp (ref R25)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C11702))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FC3F941))
(comp (ref R23)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C25744))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 60749D41))
(comp (ref U1)
(value STM32F042K6Tx)
(footprint Package_QFP:LQFP-32_7x7mm_P0.8mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/DM00105814.pdf)
(fields
(field (name LCSC) C69216))
(libsource (lib wideband_controller_mre-rescue) (part STM32F042K6Tx-MCU_ST_STM32F0) (description ""))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FF3B038))
(comp (ref C16)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C52923))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FE3F967))
(comp (ref U4)
(value REF3033)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet http://www.ti.com/lit/ds/symlink/ref3033.pdf)
(fields
(field (name LCSC) C36658))
(libsource (lib wideband_controller_mre-rescue) (part REF3033-Reference_Voltage) (description ""))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FECCFD4))
(comp (ref C17)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C52923))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 5FF21C74))
(comp (ref JP1)
(value Jumper_3_Open)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm)
(datasheet ~)
(libsource (lib wideband_controller_mre-rescue) (part Jumper_3_Open-Jumper) (description ""))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 60A55596))
(comp (ref JP2)
(value Jumper_3_Open)
(footprint Jumper:SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm)
(datasheet ~)
(libsource (lib wideband_controller_mre-rescue) (part Jumper_3_Open-Jumper) (description ""))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 60A736F8))
(comp (ref SW1)
(value SW_Push)
(footprint rusefi_lib:SW_SPST_CK_RS282G05A3)
(datasheet ~)
(libsource (lib Switch) (part SW_Push) (description "Push button switch, generic, two pins"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 61BD0BC6))
(comp (ref J1)
(value TC2030)
(footprint rusefi_lib:Tag-Connect_TC2030-IDC-NL_2x03_P1.27mm_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 /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 61C12F15))
(comp (ref J2)
(value Conn_01x06_Male)
(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 /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 61D40AAD))
(comp (ref J3)
(value Conn_01x03_Male)
(footprint Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector) (part Conn_01x03_Male) (description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /mcu_adc_mre_wbo2/) (tstamps /61A542DD/))
(tstamp 61A0B132))
(comp (ref U5)
(value TJA1051T-3)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.nxp.com/documents/data_sheet/TJA1051.pdf)
(fields
(field (name LCSC) C38695))
(libsource (lib can_conn_mre_wbo2-rescue) (part TJA1051T-3-Interface_CAN_LIN) (description ""))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 5FB6A2CB))
(comp (ref C23)
(value 47p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1567))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 5FC74FFA))
(comp (ref C24)
(value 47p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C1567))
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 5FC7558C))
(comp (ref J10)
(value Molex_Micro-Fit_3.0_43045-0601_43045-0612)
(footprint Connector_Molex:Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal)
(libsource (lib wideband_controller_mre-rescue) (part Conn_Molex_02x03) (description ""))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 6195B85F))
(comp (ref J20)
(value Conn_02x05_Odd_Even-Connector_Generic)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical_SMD)
(libsource (lib wideband_controller_mre-rescue) (part Conn_02x05_Odd_Even-Connector_Generic) (description ""))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 6195C7C5))
(comp (ref R34)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C11702))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 61B1B260))
(comp (ref R33)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C11702))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 61B1B267))
(comp (ref D1)
(value RED)
(footprint LED_SMD:LED_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C2286))
(libsource (lib Device) (part LED) (description "Light emitting diode"))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 61B1B279))
(comp (ref R32)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C11702))
(libsource (lib Device) (part R) (description Resistor))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 61B1B280))
(comp (ref Q1)
(value BTS3028)
(footprint Package_TO_SOT_SMD:TO-252-2)
(datasheet ~)
(fields
(field (name LCSC) C112639))
(libsource (lib Device) (part Q_NMOS_GDS) (description "N-MOSFET transistor, gate/drain/source"))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 61B1B2A5))
(comp (ref F1)
(value "Polyfuse 2A")
(footprint Resistor_SMD:R_1206_3216Metric)
(datasheet ~)
(libsource (lib Device) (part Polyfuse) (description "Resettable fuse, polymeric positive temperature coefficient"))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 61B7C0C0))
(comp (ref J30)
(value Conn_02x05_Odd_Even-Connector_Generic)
(footprint Connector_PinHeader_2.54mm:PinHeader_2x05_P2.54mm_Vertical_SMD)
(libsource (lib wideband_controller_mre-rescue) (part Conn_02x05_Odd_Even-Connector_Generic) (description ""))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 6195CEC3))
(comp (ref C42)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C14663)
(field (name Manufacturer) KEMET)
(field (name "Part #") C0603C104J5RACTU)
(field (name VEND) DIGI)
(field (name VEND#) 399-7844-1-ND))
(libsource (lib micro_rusEFI-rescue) (part C-Device) (description ""))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 618F24C8))
(comp (ref J15)
(value microSD_HC_Wuerth_693072010801)
(footprint Connector_Card:microSD_HC_Wuerth_693072010801)
(datasheet http://katalog.we-online.de/em/datasheet/693072010801.pdf)
(fields
(field (name LCSC) N/A)
(field (name PN) 47219-2001))
(libsource (lib micro_rusEFI-rescue) (part Micro_SD_Card-Connector-proteus-rescue) (description ""))
(sheetpath (names /can_fet_conn_mre_wbo2/) (tstamps /61A546DF/))
(tstamp 5F3076E2)))
(libparts
(libpart (lib Connector) (part Conn_01x03_Male)
(description "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x03_Male))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))))
(libpart (lib Connector) (part Conn_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
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part LED)
(description "Light emitting diode")
(docs ~)
(footprints
(fp LED*)
(fp LED_SMD:*)
(fp LED_THT:*))
(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 Device) (part Polyfuse)
(description "Resettable fuse, polymeric positive temperature coefficient")
(docs ~)
(footprints
(fp *polyfuse*)
(fp *PTC*))
(fields
(field (name Reference) F)
(field (name Value) Polyfuse))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part Q_NMOS_GDS)
(description "N-MOSFET transistor, gate/drain/source")
(docs ~)
(fields
(field (name Reference) Q)
(field (name Value) Q_NMOS_GDS))
(pins
(pin (num 1) (name G) (type input))
(pin (num 2) (name D) (type passive))
(pin (num 3) (name S) (type passive))))
(libpart (lib Device) (part R)
(description Resistor)
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Switch) (part SW_Push)
(description "Push button switch, generic, two pins")
(docs ~)
(fields
(field (name Reference) SW)
(field (name Value) SW_Push))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib can_conn_mre_wbo2-rescue) (part TJA1051T-3-Interface_CAN_LIN)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) TJA1051T-3-Interface_CAN_LIN)
(field (name Footprint) Package_SO:SOIC-8_3.9x4.9mm_P1.27mm))
(pins
(pin (num 1) (name TXD) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VCC) (type power_in))
(pin (num 4) (name RXD) (type output))
(pin (num 5) (name VIO) (type power_in))
(pin (num 6) (name CANL) (type BiDi))
(pin (num 7) (name CANH) (type BiDi))
(pin (num 8) (name S) (type input))))
(libpart (lib micro_rusEFI-rescue) (part C-Device)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C-Device))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib micro_rusEFI-rescue) (part Micro_SD_Card-Connector-proteus-rescue)
(footprints
(fp microSD*))
(fields
(field (name Reference) J)
(field (name Value) Micro_SD_Card-Connector-proteus-rescue))
(pins
(pin (num 1) (name DAT2) (type BiDi))
(pin (num 2) (name DAT3/CD) (type BiDi))
(pin (num 3) (name CMD) (type input))
(pin (num 4) (name VDD) (type power_in))
(pin (num 5) (name CLK) (type input))
(pin (num 6) (name VSS) (type power_in))
(pin (num 7) (name DAT0) (type BiDi))
(pin (num 8) (name DAT1) (type BiDi))
(pin (num 9) (name SHIELD) (type passive))))
(libpart (lib wideband_controller_mre-rescue) (part AD8603-Amplifier_Operational)
(footprints
(fp TSOT*23*))
(fields
(field (name Reference) U)
(field (name Value) AD8603-Amplifier_Operational)
(field (name Footprint) Package_TO_SOT_SMD:TSOT-23-5))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name V-) (type power_in))
(pin (num 3) (name +) (type input))
(pin (num 4) (name -) (type input))
(pin (num 5) (name V+) (type power_in))))
(libpart (lib wideband_controller_mre-rescue) (part Conn_02x05_Odd_Even-Connector_Generic)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_02x05_Odd_Even-Connector_Generic))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))
(pin (num 7) (name Pin_7) (type passive))
(pin (num 8) (name Pin_8) (type passive))
(pin (num 9) (name Pin_9) (type passive))
(pin (num 10) (name Pin_10) (type passive))))
(libpart (lib wideband_controller_mre-rescue) (part Conn_Molex_02x03)
(footprints
(fp Connector*:*_2x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_Molex_02x03))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))
(pin (num 6) (name Pin_6) (type passive))))
(libpart (lib wideband_controller_mre-rescue) (part Jumper_3_Open-Jumper)
(footprints
(fp Jumper*)
(fp TestPoint*3Pads*)
(fp TestPoint*Bridge*))
(fields
(field (name Reference) JP)
(field (name Value) Jumper_3_Open-Jumper))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name C) (type input))
(pin (num 3) (name B) (type passive))))
(libpart (lib wideband_controller_mre-rescue) (part MCP6004-Amplifier_Operational)
(footprints
(fp SOIC*3.9x8.7mm*P1.27mm*)
(fp DIP*W7.62mm*)
(fp TSSOP*4.4x5mm*P0.65mm*)
(fp SSOP*5.3x6.2mm*P0.65mm*)
(fp MSOP*3x3mm*P0.5mm*))
(fields
(field (name Reference) U)
(field (name Value) MCP6004-Amplifier_Operational))
(pins
(pin (num 1) (name ~) (type output))
(pin (num 2) (name -) (type input))
(pin (num 3) (name +) (type input))
(pin (num 4) (name V+) (type power_in))
(pin (num 5) (name +) (type input))
(pin (num 6) (name -) (type input))
(pin (num 7) (name ~) (type output))
(pin (num 8) (name ~) (type output))
(pin (num 9) (name -) (type input))
(pin (num 10) (name +) (type input))
(pin (num 11) (name V-) (type power_in))
(pin (num 12) (name +) (type input))
(pin (num 13) (name -) (type input))
(pin (num 14) (name ~) (type output))))
(libpart (lib wideband_controller_mre-rescue) (part REF3033-Reference_Voltage)
(footprints
(fp SOT?23*))
(fields
(field (name Reference) U)
(field (name Value) REF3033-Reference_Voltage)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name IN) (type power_in))
(pin (num 2) (name OUT) (type power_out))
(pin (num 3) (name GND) (type power_in))))
(libpart (lib wideband_controller_mre-rescue) (part STM32F042K6Tx-MCU_ST_STM32F0)
(footprints
(fp LQFP*7x7mm*P0.8mm*))
(fields
(field (name Reference) U)
(field (name Value) STM32F042K6Tx-MCU_ST_STM32F0)
(field (name Footprint) Package_QFP:LQFP-32_7x7mm_P0.8mm))
(pins
(pin (num 1) (name VDD) (type power_in))
(pin (num 2) (name PF0) (type input))
(pin (num 3) (name PF1) (type input))
(pin (num 4) (name NRST) (type input))
(pin (num 5) (name VDDA) (type power_in))
(pin (num 6) (name PA0) (type BiDi))
(pin (num 7) (name PA1) (type BiDi))
(pin (num 8) (name PA2) (type BiDi))
(pin (num 9) (name PA3) (type BiDi))
(pin (num 10) (name PA4) (type BiDi))
(pin (num 11) (name PA5) (type BiDi))
(pin (num 12) (name PA6) (type BiDi))
(pin (num 13) (name PA7) (type BiDi))
(pin (num 14) (name PB0) (type BiDi))
(pin (num 15) (name PB1) (type BiDi))
(pin (num 16) (name VSS) (type power_in))
(pin (num 17) (name VDDIO2) (type power_in))
(pin (num 18) (name PA8) (type BiDi))
(pin (num 19) (name PA9) (type BiDi))
(pin (num 20) (name PA10) (type BiDi))
(pin (num 21) (name PA11) (type BiDi))
(pin (num 22) (name PA12) (type BiDi))
(pin (num 23) (name PA13) (type BiDi))
(pin (num 24) (name PA14) (type BiDi))
(pin (num 25) (name PA15) (type BiDi))
(pin (num 26) (name PB3) (type BiDi))
(pin (num 27) (name PB4) (type BiDi))
(pin (num 28) (name PB5) (type BiDi))
(pin (num 29) (name PB6) (type BiDi))
(pin (num 30) (name PB7) (type BiDi))
(pin (num 31) (name PB8) (type BiDi))
(pin (num 32) (name VSSA) (type power_in)))))
(libraries
(library (logical Connector)
(uri /usr/share/kicad/library/Connector.lib))
(library (logical Device)
(uri /usr/share/kicad/library/Device.lib))
(library (logical Switch)
(uri /usr/share/kicad/library/Switch.lib))
(library (logical can_conn_mre_wbo2-rescue)
(uri /home/kocur/wideband_controller_mre/can_conn_mre_wbo2-rescue.lib))
(library (logical micro_rusEFI-rescue)
(uri /home/kocur/hw_microRusEfi_microSD/micro_rusEFI-rescue.lib))
(library (logical wideband_controller_mre-rescue)
(uri /home/kocur/wideband_controller_mre/wideband_controller_mre-rescue.lib)))
(nets
(net (code 1) (name GND)
(node (ref R6) (pin 2))
(node (ref R23) (pin 1))
(node (ref R33) (pin 1))
(node (ref J15) (pin 6))
(node (ref J15) (pin 9))
(node (ref J1) (pin 5))
(node (ref J30) (pin 7))
(node (ref J30) (pin 8))
(node (ref C6) (pin 2))
(node (ref R25) (pin 1))
(node (ref C4) (pin 2))
(node (ref U3) (pin 2))
(node (ref D1) (pin 1))
(node (ref J20) (pin 10))
(node (ref J2) (pin 6))
(node (ref C24) (pin 2))
(node (ref U5) (pin 2))
(node (ref JP1) (pin 1))
(node (ref C17) (pin 2))
(node (ref C23) (pin 1))
(node (ref U4) (pin 3))
(node (ref JP2) (pin 1))
(node (ref J3) (pin 1))
(node (ref U5) (pin 8))
(node (ref C42) (pin 1))
(node (ref U1) (pin 16))
(node (ref C12) (pin 2))
(node (ref C16) (pin 2))
(node (ref C5) (pin 2))
(node (ref C7) (pin 2))
(node (ref U2) (pin 11))
(node (ref C1) (pin 2))
(node (ref C11) (pin 2))
(node (ref C9) (pin 2))
(node (ref R24) (pin 1))
(node (ref C13) (pin 2))
(node (ref Q1) (pin 3))
(node (ref U1) (pin 32))
(node (ref R2) (pin 2)))
(net (code 2) (name LSU_Vm)
(node (ref J10) (pin 1))
(node (ref C4) (pin 1))
(node (ref R3) (pin 1))
(node (ref U1) (pin 7))
(node (ref R4) (pin 1)))
(net (code 3) (name LSU_Un)
(node (ref J10) (pin 3))
(node (ref U2) (pin 10))
(node (ref C2) (pin 1))
(node (ref R21) (pin 1)))
(net (code 4) (name LSU_Ip)
(node (ref R14) (pin 2))
(node (ref R17) (pin 2))
(node (ref J10) (pin 4)))
(net (code 5) (name LSU_Rtrim)
(node (ref J10) (pin 6))
(node (ref R13) (pin 2))
(node (ref R12) (pin 1))
(node (ref R17) (pin 1))
(node (ref R11) (pin 1)))
(net (code 6) (name +5V)
(node (ref J30) (pin 2))
(node (ref J30) (pin 1))
(node (ref U4) (pin 1))
(node (ref U5) (pin 3))
(node (ref C17) (pin 1))
(node (ref J20) (pin 2)))
(net (code 7) (name heater_pwm)
(node (ref R34) (pin 2))
(node (ref R33) (pin 2))
(node (ref R32) (pin 2))
(node (ref U1) (pin 13)))
(net (code 8) (name CAN_TX)
(node (ref U5) (pin 1))
(node (ref U1) (pin 22)))
(net (code 9) (name CAN_RX)
(node (ref U1) (pin 21))
(node (ref U5) (pin 4)))
(net (code 10) (name "Net-(U1-Pad2)")
(node (ref U1) (pin 2)))
(net (code 11) (name /mcu_adc_mre_wbo2/SWDIO)
(node (ref U1) (pin 23))
(node (ref J1) (pin 2))
(node (ref J2) (pin 4)))
(net (code 12) (name /mcu_adc_mre_wbo2/SWCLK)
(node (ref J1) (pin 4))
(node (ref J2) (pin 3))
(node (ref U1) (pin 24)))
(net (code 13) (name "Net-(U1-Pad25)")
(node (ref U1) (pin 25)))
(net (code 14) (name "Net-(U1-Pad26)")
(node (ref U1) (pin 26)))
(net (code 15) (name "Net-(U1-Pad27)")
(node (ref U1) (pin 27)))
(net (code 16) (name /mcu_adc_mre_wbo2/LED_BLUE)
(node (ref D3) (pin 2))
(node (ref U1) (pin 28)))
(net (code 17) (name "Net-(U1-Pad14)")
(node (ref U1) (pin 14)))
(net (code 18) (name "Net-(U1-Pad11)")
(node (ref U1) (pin 11)))
(net (code 19) (name "Net-(U1-Pad10)")
(node (ref U1) (pin 10)))
(net (code 20) (name /mcu_adc_mre_wbo2/nRESET)
(node (ref U1) (pin 4))
(node (ref J2) (pin 2))
(node (ref J1) (pin 3))
(node (ref C16) (pin 1)))
(net (code 21) (name "Net-(U1-Pad3)")
(node (ref U1) (pin 3)))
(net (code 22) (name /mcu_adc_mre_wbo2/Nernst_esr_drive)
(node (ref U1) (pin 30))
(node (ref R22) (pin 2)))
(net (code 23) (name /mcu_adc_mre_wbo2/LED_GREEN)
(node (ref D2) (pin 2))
(node (ref U1) (pin 29)))
(net (code 24) (name "Net-(D3-Pad1)")
(node (ref R25) (pin 2))
(node (ref D3) (pin 1)))
(net (code 25) (name "Net-(R19-Pad1)")
(node (ref R20) (pin 2))
(node (ref R19) (pin 1)))