forked from rusefi/uaefi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIGN6.kicad_sch
1599 lines (1561 loc) · 52.6 KB
/
IGN6.kicad_sch
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
(kicad_sch (version 20230121) (generator eeschema)
(uuid 6d4075fa-bb19-41ce-9124-2ed2848750ae)
(paper "A4")
(title_block
(title "UAEFI Ignition")
(date "2023-11-01")
(rev "B")
(company "rusefi.com")
)
(lib_symbols
(symbol "Device:Polyfuse" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "F" (at -2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Polyfuse" (at 2.54 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 1.27 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "resettable fuse PTC PPTC polyfuse polyswitch" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resettable fuse, polymeric positive temperature coefficient" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "*polyfuse* *PTC*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Polyfuse_0_1"
(rectangle (start -0.762 2.54) (end 0.762 -2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.524 2.54)
(xy -1.524 1.524)
(xy 1.524 -1.524)
(xy 1.524 -2.54)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "Polyfuse_1_1"
(pin passive line (at 0 3.81 270) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 0 -3.81 90) (length 1.27)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:Q_NIGBT_GCE" (pin_names (offset 0) hide) (in_bom yes) (on_board yes)
(property "Reference" "Q" (at 5.08 1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "Q_NIGBT_GCE" (at 5.08 -1.27 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (at 5.08 2.54 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "transistor IGBT N-IGBT" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "N-IGBT transistor, gate/collector/emitter" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Q_NIGBT_GCE_0_1"
(polyline
(pts
(xy 0.762 -1.016)
(xy 0.762 -2.032)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 0.508)
(xy 0.762 -0.508)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.762 2.032)
(xy 0.762 1.016)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -2.413)
(xy 0.762 -1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 -0.889)
(xy 0.762 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 2.54 2.413)
(xy 0.762 1.524)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 0.254 1.905)
(xy 0.254 -1.905)
(xy 0.254 -1.905)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.397 -2.159)
(xy 1.651 -1.651)
(xy 2.54 -2.413)
(xy 1.397 -2.159)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(polyline
(pts
(xy 2.159 1.905)
(xy 1.905 2.413)
(xy 1.016 1.651)
(xy 2.159 1.905)
)
(stroke (width 0) (type default))
(fill (type outline))
)
(circle (center 1.27 0) (radius 2.8194)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "Q_NIGBT_GCE_1_1"
(pin input line (at -5.08 0 0) (length 5.334)
(name "G" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 5.08 270) (length 2.54)
(name "C" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 -5.08 90) (length 2.54)
(name "E" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "hellen-one-common:Res" (pin_numbers hide) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 3.81 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Res" (at 5.08 -2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 3.81 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "" (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Res_1_0"
(rectangle (start 2.54 -1.27) (end 7.62 1.27)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at 0 0 0) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 10.16 0 180) (length 2.54)
(name "" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_keywords" "global power" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND_0_1"
(polyline
(pts
(xy 0 0)
(xy 0 -1.27)
(xy 1.27 -1.27)
(xy 0 -2.54)
(xy -1.27 -1.27)
(xy 0 -1.27)
)
(stroke (width 0) (type default))
(fill (type none))
)
)
(symbol "GND_1_1"
(pin power_in line (at 0 0 270) (length 0) hide
(name "GND" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
)
(junction (at 118.11 64.77) (diameter 0) (color 0 0 0 0)
(uuid 142114c3-51ad-4bd3-b14a-e6713048a7ff)
)
(junction (at 118.11 120.65) (diameter 0) (color 0 0 0 0)
(uuid 234abe17-ea08-4e59-b53e-cd52d056e3fa)
)
(junction (at 135.89 69.85) (diameter 0) (color 0 0 0 0)
(uuid 3e83fc6e-754d-457e-a33c-9272b0f994df)
)
(junction (at 118.11 92.71) (diameter 0) (color 0 0 0 0)
(uuid 4f0d27a7-ccae-4a60-89b5-45c5e77cb0e4)
)
(junction (at 135.89 97.79) (diameter 0) (color 0 0 0 0)
(uuid 76b92482-a8f3-4092-9d34-a6d368619af1)
)
(junction (at 182.88 125.73) (diameter 0) (color 0 0 0 0)
(uuid 98b10b63-cc30-4f42-9155-bfe5de690af3)
)
(junction (at 182.88 97.79) (diameter 0) (color 0 0 0 0)
(uuid 9ca9849f-c445-479b-a506-968da582108f)
)
(junction (at 165.1 64.77) (diameter 0) (color 0 0 0 0)
(uuid aefed68f-078c-49d5-a0a7-e96dd97b011c)
)
(junction (at 182.88 69.85) (diameter 0) (color 0 0 0 0)
(uuid d93f28bc-473f-41a1-a2c8-e964fc2325dd)
)
(junction (at 165.1 120.65) (diameter 0) (color 0 0 0 0)
(uuid e41984cf-d701-44c4-9309-7b8d49fb68fe)
)
(junction (at 165.1 92.71) (diameter 0) (color 0 0 0 0)
(uuid e96695ea-aa82-4129-b20e-c42b4a233e38)
)
(junction (at 135.89 125.73) (diameter 0) (color 0 0 0 0)
(uuid f973ea4a-72a3-4005-bcce-697fa62278c5)
)
(wire (pts (xy 182.88 64.77) (xy 182.88 69.85))
(stroke (width 0) (type default))
(uuid 007807cd-2990-455b-8b06-939bffe212ae)
)
(wire (pts (xy 160.02 64.77) (xy 165.1 64.77))
(stroke (width 0) (type default))
(uuid 0c9630b0-908e-438c-8b22-c2078ba906f1)
)
(wire (pts (xy 118.11 102.87) (xy 118.11 107.95))
(stroke (width 0) (type default))
(uuid 109ac876-60a2-42eb-befb-54fc5989ec51)
)
(wire (pts (xy 113.03 120.65) (xy 118.11 120.65))
(stroke (width 0) (type default))
(uuid 2221f2d6-c893-4365-b027-16067a3de746)
)
(wire (pts (xy 118.11 74.93) (xy 118.11 80.01))
(stroke (width 0) (type default))
(uuid 262ccb62-dcda-4e63-9cb4-47ef7307e71f)
)
(wire (pts (xy 165.1 130.81) (xy 165.1 137.16))
(stroke (width 0) (type default))
(uuid 2dc93f12-802f-457f-9390-87748bcf8cdf)
)
(wire (pts (xy 160.02 92.71) (xy 165.1 92.71))
(stroke (width 0) (type default))
(uuid 319b3d97-f0d7-4c44-860a-245e6369aebc)
)
(wire (pts (xy 165.1 74.93) (xy 165.1 81.28))
(stroke (width 0) (type default))
(uuid 321ef7ef-895e-4c0f-9399-7279d60efc26)
)
(wire (pts (xy 165.1 102.87) (xy 165.1 107.95))
(stroke (width 0) (type default))
(uuid 38044df2-aa91-4347-a20c-b20977ecb7eb)
)
(wire (pts (xy 135.89 92.71) (xy 135.89 97.79))
(stroke (width 0) (type default))
(uuid 3a00cf48-4ed2-40c0-b5f8-612f38dd48be)
)
(wire (pts (xy 165.1 64.77) (xy 172.72 64.77))
(stroke (width 0) (type default))
(uuid 3d143fcf-6d76-4451-8763-1243e727606a)
)
(wire (pts (xy 135.89 120.65) (xy 135.89 125.73))
(stroke (width 0) (type default))
(uuid 4cf399a2-889c-466c-8c2e-c05ebd909721)
)
(wire (pts (xy 165.1 120.65) (xy 172.72 120.65))
(stroke (width 0) (type default))
(uuid 508325a7-b2fa-426b-9b1f-416b12dec4a9)
)
(wire (pts (xy 118.11 120.65) (xy 125.73 120.65))
(stroke (width 0) (type default))
(uuid 51a53165-7641-434a-b1c2-7ab60ba4fa34)
)
(wire (pts (xy 113.03 64.77) (xy 118.11 64.77))
(stroke (width 0) (type default))
(uuid 5fe10db9-a921-4655-a019-1090e176795b)
)
(wire (pts (xy 118.11 92.71) (xy 125.73 92.71))
(stroke (width 0) (type default))
(uuid 63516abe-bb3f-4c71-a8be-811bd15f6a35)
)
(wire (pts (xy 165.1 92.71) (xy 172.72 92.71))
(stroke (width 0) (type default))
(uuid 67093fdc-a19b-49cc-95a3-685a81600959)
)
(wire (pts (xy 160.02 120.65) (xy 165.1 120.65))
(stroke (width 0) (type default))
(uuid 6d6b05b1-f47d-4050-8766-b786fc8cb9e9)
)
(wire (pts (xy 182.88 92.71) (xy 182.88 97.79))
(stroke (width 0) (type default))
(uuid 75100292-398a-4df3-b139-d568660384eb)
)
(wire (pts (xy 182.88 120.65) (xy 182.88 125.73))
(stroke (width 0) (type default))
(uuid abc784c2-8804-4c89-964e-9b9c2ab97d63)
)
(wire (pts (xy 118.11 130.81) (xy 118.11 135.89))
(stroke (width 0) (type default))
(uuid be55bc65-7e5b-40d4-8f09-b11919aed8a0)
)
(wire (pts (xy 118.11 64.77) (xy 125.73 64.77))
(stroke (width 0) (type default))
(uuid ca0b034f-196a-4f8d-8761-bda01bc9a6ef)
)
(wire (pts (xy 113.03 92.71) (xy 118.11 92.71))
(stroke (width 0) (type default))
(uuid dd8c3125-7854-456b-8d71-67c2c4e53bcc)
)
(wire (pts (xy 135.89 64.77) (xy 135.89 69.85))
(stroke (width 0) (type default))
(uuid f72acfa4-d7bb-4339-a51e-63e5b7a5da37)
)
(text "Remove R20-R22, R26-R28, and install Q7-Q12 for use with dumb coils"
(at 106.68 58.42 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 94f1ae4f-7f0e-4242-92e7-cc42eec85819)
)
(hierarchical_label "IN5" (shape input) (at 190.5 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 160bc99e-f908-4dcb-becd-865f5bcbc482)
)
(hierarchical_label "OUT1" (shape output) (at 113.03 64.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 23fdb466-9530-4ca7-8c58-0c2d6a75ccb7)
)
(hierarchical_label "OUT3" (shape output) (at 113.03 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 4a4e953c-4f6c-40b7-8220-85f3aedbc5e9)
)
(hierarchical_label "IN2" (shape input) (at 143.51 97.79 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 543149c3-2e93-4084-a771-2b3d5cb83826)
)
(hierarchical_label "IN6" (shape input) (at 190.5 125.73 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 658a6c56-b61f-46d9-88be-288c826b8ac3)
)
(hierarchical_label "OUT6" (shape output) (at 160.02 120.65 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 709f31e8-2627-4f42-85c2-aefc992e3296)
)
(hierarchical_label "OUT5" (shape output) (at 160.02 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 823ca836-fda1-4486-b1ff-96abe0a9b650)
)
(hierarchical_label "OUT2" (shape output) (at 113.03 92.71 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid 925ba267-6288-40ef-9266-98915f60e417)
)
(hierarchical_label "IN3" (shape input) (at 143.51 125.73 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid 94b9e1c7-e614-4b03-a442-7767647b1fc1)
)
(hierarchical_label "IN1" (shape input) (at 143.51 69.85 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid d38144a4-fbf5-4f59-a486-a1e0b900a2d1)
)
(hierarchical_label "OUT4" (shape output) (at 160.02 64.77 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right))
(uuid d6003afb-95af-4633-b8ee-68fa33a9e86b)
)
(hierarchical_label "IN4" (shape input) (at 190.5 69.85 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left))
(uuid db7dbaec-b01c-462d-b8d7-3ab29eb9e199)
)
(symbol (lib_id "Device:Q_NIGBT_GCE") (at 120.65 125.73 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 007e3d0d-aa46-4fe8-b808-b02941d83161)
(property "Reference" "Q?" (at 115.7986 124.5616 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "ISL9V3040D3ST" (at 115.7986 126.873 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:TO-252-2" (at 115.57 123.19 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 120.65 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "" (at 120.65 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MyComment" "DNP" (at 114.3 129.54 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid ab1084d2-37c6-49d0-8100-a3444e446569))
(pin "2" (uuid 9095ad18-9aac-4300-8b8e-d912a5cafb60))
(pin "3" (uuid cad1c319-ef6e-4d85-9366-08c68cde2477))
(instances
(project "hellen-hyundai-pb-154"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "Q?") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/c9243343-f56b-49d3-82f5-dfe50b9f59a0"
(reference "Q?") (unit 1)
)
)
(project "DUMB_COILS4"
(path "/673ceef2-a824-4aeb-8c7e-ce9fe0eb349d"
(reference "Q?") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "Q9") (unit 1)
)
)
(project "ign_quad"
(path "/feee693e-e752-43b6-82de-bf1e990fd6ba"
(reference "Q?") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 182.88 92.71 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 028c9778-3f5d-48d2-8232-969b84ce0fe7)
(property "Reference" "R14" (at 177.4796 90.0653 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "0" (at 177.8 92.71 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_2512_6332Metric" (at 179.07 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 182.88 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C25469" (at 182.88 92.71 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid d37f5a03-1763-4498-979c-b34c225f63b2))
(pin "2" (uuid 611a03e4-eafd-4173-9a61-61a255b864ad))
(instances
(project "proteus81harley"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R14") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "R27") (unit 1)
)
)
)
)
(symbol (lib_id "Device:Polyfuse") (at 186.69 125.73 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 02e392c0-f907-4220-80f8-b5f2c7dbb6e6)
(property "Reference" "F10" (at 186.69 123.19 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "50mA" (at 186.69 128.27 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Fuse:Fuse_0603_1608Metric" (at 191.77 124.46 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (at 186.69 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C369141" (at 186.69 125.73 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid a084700d-d248-46cd-bf8f-1705319db551))
(pin "2" (uuid d8b63c92-acc8-4d0f-bb7d-8046ad64516d))
(instances
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "F10") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 125.73 69.85 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1bd6c59b-c724-40d8-9957-1a1118b8183e)
(property "Reference" "R7" (at 131.052 67.5018 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "22" (at 130.81 69.85 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 129.54 66.04 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 125.73 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23345" (at 125.73 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid aae86d46-4591-422e-b43c-45168756a5c2))
(pin "2" (uuid 39c632b1-2c4f-482b-939b-1fe6c743afba))
(instances
(project "proteus81harley"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R7") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "R17") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 182.88 64.77 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 1d29929e-b36b-4b64-a56a-89b017c4f1d8)
(property "Reference" "R14" (at 177.4796 62.1253 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "0" (at 177.8 64.77 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_2512_6332Metric" (at 179.07 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 182.88 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C25469" (at 182.88 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 237aeea2-4343-45cc-a42b-336f8ebcfac0))
(pin "2" (uuid 2c45bbf2-ac65-450e-844a-a6a5616bcd90))
(instances
(project "proteus81harley"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R14") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "R26") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 172.72 125.73 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 36d4b873-ee22-4eb5-a86d-30ebf41bfdb2)
(property "Reference" "R7" (at 178.042 123.3818 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "22" (at 177.8 125.73 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 176.53 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 172.72 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23345" (at 172.72 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9410baa8-49ce-46aa-8db0-c16f0e5324b4))
(pin "2" (uuid e39b10c2-da71-47c6-87f1-b21d167723ea))
(instances
(project "proteus81harley"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R7") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "R25") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 125.73 97.79 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 3ef5d410-c3f1-40b5-98d4-2c5ac5352f44)
(property "Reference" "R7" (at 131.052 95.4418 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "22" (at 130.81 97.79 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 129.54 93.98 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 125.73 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23345" (at 125.73 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 76cfd95c-aa08-48f2-b83f-4db91356a46e))
(pin "2" (uuid c17c6e7f-490f-4f04-b585-e4fce49a0833))
(instances
(project "proteus81harley"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R7") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "R18") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 118.11 135.89 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 427728ee-06e2-4de6-afcf-18633b0b8496)
(property "Reference" "#PWR?" (at 118.11 142.24 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 118.11 139.7 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 118.11 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 118.11 135.89 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid ccc678b4-df36-44ca-b3e2-d60286df3f8e))
(instances
(project "hellen-hyundai-pb-154"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "#PWR?") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/c9243343-f56b-49d3-82f5-dfe50b9f59a0"
(reference "#PWR?") (unit 1)
)
)
(project "DUMB_COILS4"
(path "/673ceef2-a824-4aeb-8c7e-ce9fe0eb349d"
(reference "#PWR?") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "#PWR0101") (unit 1)
)
)
(project "ign_quad"
(path "/feee693e-e752-43b6-82de-bf1e990fd6ba"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 135.89 64.77 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 4d8fcbb1-83ee-47b7-beeb-af6bdb5cc54b)
(property "Reference" "R14" (at 130.4896 62.1253 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "0" (at 130.81 64.77 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_SMD:R_2512_6332Metric" (at 132.08 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 135.89 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C25469" (at 135.89 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid f7c8df4b-c23e-46ed-9d96-9a7a7d330e9a))
(pin "2" (uuid 40c2d410-cb2d-4506-9f03-f1e7695c5a9a))
(instances
(project "proteus81harley"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R14") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "R20") (unit 1)
)
)
)
)
(symbol (lib_id "Device:Polyfuse") (at 186.69 97.79 90) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 539da5c1-e20c-4d0b-9eb0-ee7a9ad6ec64)
(property "Reference" "F9" (at 186.69 95.25 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "50mA" (at 186.69 100.33 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Fuse:Fuse_0603_1608Metric" (at 191.77 96.52 0)
(effects (font (size 1.27 1.27)) (justify left) hide)
)
(property "Datasheet" "~" (at 186.69 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C369141" (at 186.69 97.79 90)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e7b7f04c-28ca-4f55-8623-9afb1ddfe216))
(pin "2" (uuid daa01cff-7d06-40f2-8f94-4e31d97a2bed))
(instances
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "F9") (unit 1)
)
)
)
)
(symbol (lib_id "Device:Q_NIGBT_GCE") (at 120.65 69.85 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5a21e231-a92c-4570-b132-2decd3096709)
(property "Reference" "Q?" (at 115.7986 68.6816 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "ISL9V3040D3ST" (at 115.7986 70.993 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:TO-252-2" (at 115.57 67.31 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 120.65 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "" (at 120.65 69.85 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MyComment" "DNP" (at 114.3 73.66 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid 77d17876-16d6-4dba-8e54-e93f9f5b3939))
(pin "2" (uuid 5d7aab90-2af4-444d-9490-d1ff35b77ff7))
(pin "3" (uuid 10458603-2727-4b39-8dec-964d2164ca74))
(instances
(project "hellen-hyundai-pb-154"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "Q?") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/c9243343-f56b-49d3-82f5-dfe50b9f59a0"
(reference "Q?") (unit 1)
)
)
(project "DUMB_COILS4"
(path "/673ceef2-a824-4aeb-8c7e-ce9fe0eb349d"
(reference "Q?") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "Q7") (unit 1)
)
)
(project "ign_quad"
(path "/feee693e-e752-43b6-82de-bf1e990fd6ba"
(reference "Q?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 165.1 137.16 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 5e45aea1-2305-4f11-a01f-e6c53573b496)
(property "Reference" "#PWR?" (at 165.1 143.51 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 165.1 140.97 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 165.1 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 165.1 137.16 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid c61280e2-903e-474b-9498-0260e79a4247))
(instances
(project "hellen-hyundai-pb-154"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "#PWR?") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/c9243343-f56b-49d3-82f5-dfe50b9f59a0"
(reference "#PWR?") (unit 1)
)
)
(project "DUMB_COILS4"
(path "/673ceef2-a824-4aeb-8c7e-ce9fe0eb349d"
(reference "#PWR?") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "#PWR0104") (unit 1)
)
)
(project "ign_quad"
(path "/feee693e-e752-43b6-82de-bf1e990fd6ba"
(reference "#PWR?") (unit 1)
)
)
)
)
(symbol (lib_id "hellen-one-common:Res") (at 125.73 125.73 0) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 64ea45bb-1850-4eff-b028-1ecfa78307ac)
(property "Reference" "R7" (at 131.052 123.3818 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "22" (at 130.81 125.73 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "hellen-one-common:R0603" (at 129.54 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 125.73 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "C23345" (at 125.73 125.73 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8dcb465a-4116-45bc-bc53-49fd1f2c303a))
(pin "2" (uuid eb343343-f358-40fe-afea-68d89dd01431))
(instances
(project "proteus81harley"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "R7") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "R19") (unit 1)
)
)
)
)
(symbol (lib_id "Device:Q_NIGBT_GCE") (at 120.65 97.79 0) (mirror y) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 6b800909-d074-4dbe-a04b-e4cb2b67c2b1)
(property "Reference" "Q?" (at 115.7986 96.6216 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "ISL9V3040D3ST" (at 115.7986 98.933 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Package_TO_SOT_SMD:TO-252-2" (at 115.57 95.25 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 120.65 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "LCSC" "" (at 120.65 97.79 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "MyComment" "DNP" (at 114.3 101.6 0)
(effects (font (size 1.27 1.27)))
)
(pin "1" (uuid a77e1876-949f-4f99-a275-d884fcdb9543))
(pin "2" (uuid db2c1fc9-3b1d-4a86-b22f-9a0494575aee))
(pin "3" (uuid 9f402014-c0af-40f3-9b2e-f14055e62de1))
(instances
(project "hellen-hyundai-pb-154"
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460"
(reference "Q?") (unit 1)
)
(path "/63d2dd9f-d5ff-4811-a88d-0ba932475460/c9243343-f56b-49d3-82f5-dfe50b9f59a0"
(reference "Q?") (unit 1)
)
)
(project "DUMB_COILS4"
(path "/673ceef2-a824-4aeb-8c7e-ce9fe0eb349d"
(reference "Q?") (unit 1)
)
)
(project "uaefi"
(path "/ac264c30-3e9a-4be2-b97a-9949b68bd497/92c4206f-a69e-4d4d-9308-206d3518e11e"
(reference "Q8") (unit 1)
)
)
(project "ign_quad"
(path "/feee693e-e752-43b6-82de-bf1e990fd6ba"
(reference "Q?") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 118.11 80.01 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 7252f413-2c52-44cd-8b56-4d5887f95d93)
(property "Reference" "#PWR?" (at 118.11 86.36 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 118.11 83.82 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 118.11 80.01 0)
(effects (font (size 1.27 1.27)) hide)
)