-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTDA7294.kicad_sch
1605 lines (1565 loc) · 54.6 KB
/
TDA7294.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 9799c5e9-9628-4b6d-8b70-d4ded1559ff2)
(paper "A4")
(title_block
(title "Amplificador TDA7294")
(date "2022-12-08")
(rev "v1.0.0")
(company "MAYKOLREY.COM")
)
(lib_symbols
(symbol "Connector_Generic:Conn_01x03" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x03" (at 0 -5.08 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x03, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x03_1_1"
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -3.81)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Connector_Generic:Conn_01x04" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "J" (at 0 5.08 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Conn_01x04" (at 0 -7.62 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" "connector" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Generic connector, single row, 01x04, script generated (kicad-library-utils/schlib/autogen/connector/)" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "Connector*:*_1x??_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Conn_01x04_1_1"
(rectangle (start -1.27 -4.953) (end 0 -5.207)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 -2.413) (end 0 -2.667)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 0.127) (end 0 -0.127)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 2.667) (end 0 2.413)
(stroke (width 0.1524) (type default))
(fill (type none))
)
(rectangle (start -1.27 3.81) (end 1.27 -6.35)
(stroke (width 0.254) (type default))
(fill (type background))
)
(pin passive line (at -5.08 2.54 0) (length 3.81)
(name "Pin_1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 0 0) (length 3.81)
(name "Pin_2" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -2.54 0) (length 3.81)
(name "Pin_3" (effects (font (size 1.27 1.27))))
(number "3" (effects (font (size 1.27 1.27))))
)
(pin passive line (at -5.08 -5.08 0) (length 3.81)
(name "Pin_4" (effects (font (size 1.27 1.27))))
(number "4" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "D" (at 0 2.54 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "D" (at 0 -2.54 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" "diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Diode" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "D_0_1"
(polyline
(pts
(xy -1.27 1.27)
(xy -1.27 -1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 0)
(xy -1.27 0)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy 1.27 1.27)
(xy 1.27 -1.27)
(xy -1.27 0)
(xy 1.27 1.27)
)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "D_1_1"
(pin passive line (at -3.81 0 0) (length 2.54)
(name "K" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 3.81 0 180) (length 2.54)
(name "A" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R" (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at -1.778 0 90)
(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" "R res resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Resistor" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default))
(fill (type none))
)
)
(symbol "R_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 "Mechanical:MountingHole_Pad" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "H" (at 0 6.35 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "MountingHole_Pad" (at 0 4.445 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" "mounting hole" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_description" "Mounting Hole with connection" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "MountingHole*Pad*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "MountingHole_Pad_0_1"
(circle (center 0 1.27) (radius 1.27)
(stroke (width 1.27) (type default))
(fill (type none))
)
)
(symbol "MountingHole_Pad_1_1"
(pin input line (at 0 -2.54 90) (length 2.54)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "TDA7294-rescue:CP1-Device" (pin_numbers hide) (pin_names (offset 0.254) hide) (in_bom yes) (on_board yes)
(property "Reference" "C" (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "CP1-Device" (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(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_fp_filters" "CP_*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "CP1-Device_0_1"
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.778 2.286)
(xy -0.762 2.286)
)
(stroke (width 0) (type default))
(fill (type none))
)
(polyline
(pts
(xy -1.27 1.778)
(xy -1.27 2.794)
)
(stroke (width 0) (type default))
(fill (type none))
)
(arc (start 2.032 -1.27) (mid 0 -0.5572) (end -2.032 -1.27)
(stroke (width 0.508) (type default))
(fill (type none))
)
)
(symbol "CP1-Device_1_1"
(pin passive line (at 0 3.81 270) (length 2.794)
(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 3.302)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "TDA7294-rescue:Jumper_NO_Small-Device" (pin_numbers hide) (pin_names (offset 0.762) hide) (in_bom yes) (on_board yes)
(property "Reference" "JP" (at 0 2.032 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "Jumper_NO_Small-Device" (at 0.254 -1.524 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_fp_filters" "SolderJumper*Open* Jumper* TestPoint*2Pads* TestPoint*Bridge*" (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "Jumper_NO_Small-Device_0_1"
(circle (center -1.016 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(circle (center 1.016 0) (radius 0.508)
(stroke (width 0) (type default))
(fill (type none))
)
(pin passive line (at -2.54 0 0) (length 1.016)
(name "1" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
(pin passive line (at 2.54 0 180) (length 1.016)
(name "2" (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" "power-flag" (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 35.56 110.49) (diameter 0) (color 0 0 0 0)
(uuid 3d1906c7-9f60-4971-8ff5-a5337db9bc97)
)
(junction (at 48.26 110.49) (diameter 0) (color 0 0 0 0)
(uuid 46c55127-9feb-41c8-bfd2-f9a2f6e7756d)
)
(junction (at 189.23 69.85) (diameter 0) (color 0 0 0 0)
(uuid 5a774e4b-3d6c-45a0-acc6-82dcbfa1ddfc)
)
(junction (at 129.54 110.49) (diameter 0) (color 0 0 0 0)
(uuid 69cc4644-3186-4e90-a317-6702f85aa2ce)
)
(junction (at 74.93 114.3) (diameter 0) (color 0 0 0 0)
(uuid 6d76da7b-6bfb-4618-aca3-8e8de3e0fa3c)
)
(junction (at 127 114.3) (diameter 0) (color 0 0 0 0)
(uuid 8933dc92-41b7-4d7a-bf5a-152b4d5a7721)
)
(junction (at 86.36 114.3) (diameter 0) (color 0 0 0 0)
(uuid 952e65e4-bb56-4fa6-83a9-b840a32ec2e7)
)
(junction (at 222.25 87.63) (diameter 0) (color 0 0 0 0)
(uuid cc3d0853-cf04-46f9-9be4-35a1ef9fc9c5)
)
(junction (at 62.23 114.3) (diameter 0) (color 0 0 0 0)
(uuid f2b0dbfb-e8be-43c4-9dbb-654850b9ee8c)
)
(junction (at 92.71 110.49) (diameter 0) (color 0 0 0 0)
(uuid fcfd1e03-b53c-42ac-9517-94ef2c264a35)
)
(no_connect (at 171.45 73.66) (uuid 996a1713-53ad-4104-9bac-9d62ac236f96))
(wire (pts (xy 35.56 124.46) (xy 35.56 121.92))
(stroke (width 0) (type default))
(uuid 010c8924-b2d2-461a-90ca-1adea5d7e0aa)
)
(wire (pts (xy 46.99 53.34) (xy 41.91 53.34))
(stroke (width 0) (type default))
(uuid 0483f5e8-34c1-4c59-be41-134152bad6d1)
)
(wire (pts (xy 171.45 100.33) (xy 179.07 100.33))
(stroke (width 0) (type default))
(uuid 06a7609e-5e8e-4a0e-bdc2-03e748e40c17)
)
(wire (pts (xy 48.26 50.8) (xy 41.91 50.8))
(stroke (width 0) (type default))
(uuid 0761c44d-f0d2-40e2-9c96-46a9cd09eb7a)
)
(wire (pts (xy 127 114.3) (xy 142.24 114.3))
(stroke (width 0) (type default))
(uuid 0e1063e6-d2a0-48dc-af2e-0ffcd299fc48)
)
(wire (pts (xy 184.15 100.33) (xy 189.23 100.33))
(stroke (width 0) (type default))
(uuid 0f05132e-ac98-4115-9dd6-28c3f09ba64a)
)
(wire (pts (xy 73.66 186.69) (xy 73.66 187.96))
(stroke (width 0) (type default))
(uuid 1446e257-4e1d-4d70-98df-7c8d7a3464d9)
)
(wire (pts (xy 171.45 69.85) (xy 189.23 69.85))
(stroke (width 0) (type default))
(uuid 19ebc832-1407-4015-a8d5-b67ee8995af2)
)
(wire (pts (xy 127 73.66) (xy 142.24 73.66))
(stroke (width 0) (type default))
(uuid 1b419c9f-19fe-487f-a8ba-403ffb9f18f3)
)
(wire (pts (xy 64.77 121.92) (xy 62.23 121.92))
(stroke (width 0) (type default))
(uuid 230c3b52-3fda-423c-9456-0332536dce55)
)
(wire (pts (xy 196.85 92.71) (xy 223.52 92.71))
(stroke (width 0) (type default))
(uuid 243310a0-f839-4e5e-ae17-1fe333a428b3)
)
(wire (pts (xy 222.25 87.63) (xy 223.52 87.63))
(stroke (width 0) (type default))
(uuid 258c07fe-0951-4fcd-9c54-3b331bbd85d3)
)
(wire (pts (xy 58.42 114.3) (xy 62.23 114.3))
(stroke (width 0) (type default))
(uuid 2866badb-8b59-458b-b928-62d7fd0d97e1)
)
(wire (pts (xy 134.62 99.06) (xy 142.24 99.06))
(stroke (width 0) (type default))
(uuid 2b70c2d1-7187-486c-a699-bfed3a1806fc)
)
(wire (pts (xy 64.77 186.69) (xy 64.77 187.96))
(stroke (width 0) (type default))
(uuid 2ec51917-2b26-4b69-80f3-406b97c4c0e3)
)
(wire (pts (xy 120.65 71.12) (xy 142.24 71.12))
(stroke (width 0) (type default))
(uuid 2ef7b505-39bd-4cdd-90dd-16b6bb91d3a0)
)
(wire (pts (xy 107.95 87.63) (xy 101.6 87.63))
(stroke (width 0) (type default))
(uuid 3199d54c-dfc5-49f1-a6e9-2c772ce87b6e)
)
(wire (pts (xy 86.36 114.3) (xy 74.93 114.3))
(stroke (width 0) (type default))
(uuid 31e670f7-36ea-4f05-9c5a-27211417b0ba)
)
(wire (pts (xy 222.25 90.17) (xy 222.25 87.63))
(stroke (width 0) (type default))
(uuid 35c20c18-2891-43ed-a3e6-a5c9b5bc4e59)
)
(wire (pts (xy 46.99 48.26) (xy 41.91 48.26))
(stroke (width 0) (type default))
(uuid 3b500c13-0185-46cf-a0ac-4109afad0911)
)
(wire (pts (xy 92.71 110.49) (xy 129.54 110.49))
(stroke (width 0) (type default))
(uuid 3db53b2c-93ad-4d07-8061-9674d64768d1)
)
(wire (pts (xy 196.85 85.09) (xy 223.52 85.09))
(stroke (width 0) (type default))
(uuid 3df40803-29e0-4cba-bcc6-ece202c73cea)
)
(wire (pts (xy 92.71 118.11) (xy 92.71 110.49))
(stroke (width 0) (type default))
(uuid 44935951-694e-4c85-9b97-263a7520f1f7)
)
(wire (pts (xy 120.65 85.09) (xy 120.65 71.12))
(stroke (width 0) (type default))
(uuid 45d50443-541e-435c-b64d-e829d11dd9e8)
)
(wire (pts (xy 35.56 110.49) (xy 35.56 106.68))
(stroke (width 0) (type default))
(uuid 4605496f-3c80-4505-a8b5-c10984856241)
)
(wire (pts (xy 134.62 64.77) (xy 142.24 64.77))
(stroke (width 0) (type default))
(uuid 4781ba8e-056a-464e-8c17-47bc89da8bf6)
)
(wire (pts (xy 120.65 107.95) (xy 142.24 107.95))
(stroke (width 0) (type default))
(uuid 49f2a8dc-0c35-41c1-9971-d3287fae6a42)
)
(wire (pts (xy 134.62 101.6) (xy 142.24 101.6))
(stroke (width 0) (type default))
(uuid 4ca5a0bd-1e82-4d62-9ee2-56b423eba313)
)
(wire (pts (xy 189.23 100.33) (xy 189.23 92.71))
(stroke (width 0) (type default))
(uuid 52c935d1-48ca-44d3-a854-d20d50f4e493)
)
(wire (pts (xy 35.56 92.71) (xy 35.56 99.06))
(stroke (width 0) (type default))
(uuid 54ef765d-c82a-4014-82c7-e137b6fa059b)
)
(wire (pts (xy 189.23 69.85) (xy 196.85 69.85))
(stroke (width 0) (type default))
(uuid 5a9425f9-277b-44fe-849b-7322d9f64479)
)
(wire (pts (xy 86.36 118.11) (xy 86.36 114.3))
(stroke (width 0) (type default))
(uuid 5d14aded-45f1-4f78-b0a4-4db64a290047)
)
(wire (pts (xy 45.72 110.49) (xy 48.26 110.49))
(stroke (width 0) (type default))
(uuid 6378a8a4-349f-4e35-8f63-4e806673840a)
)
(wire (pts (xy 74.93 114.3) (xy 72.39 114.3))
(stroke (width 0) (type default))
(uuid 71da79c8-c4c4-433e-9138-f641d86222c1)
)
(wire (pts (xy 72.39 121.92) (xy 74.93 121.92))
(stroke (width 0) (type default))
(uuid 72ca3855-23db-48f6-b821-38d415ed6ab2)
)
(wire (pts (xy 129.54 76.2) (xy 142.24 76.2))
(stroke (width 0) (type default))
(uuid 7499330e-57ba-4856-ab47-86a95dc33eae)
)
(wire (pts (xy 92.71 110.49) (xy 72.39 110.49))
(stroke (width 0) (type default))
(uuid 7c748ab7-6c64-4285-9831-13765492ac9f)
)
(wire (pts (xy 189.23 69.85) (xy 189.23 85.09))
(stroke (width 0) (type default))
(uuid 7cb85ae8-9906-43da-97a9-e794df908281)
)
(wire (pts (xy 101.6 85.09) (xy 120.65 85.09))
(stroke (width 0) (type default))
(uuid 7e3ce797-ce8b-44a3-8bce-fff4570301ae)
)
(wire (pts (xy 120.65 90.17) (xy 120.65 107.95))
(stroke (width 0) (type default))
(uuid 7fdab304-4869-417e-a032-be25b131e6f5)
)
(wire (pts (xy 62.23 114.3) (xy 64.77 114.3))
(stroke (width 0) (type default))
(uuid 87e82a26-6829-4b70-a6b7-0e6d8338012c)
)
(wire (pts (xy 134.62 62.23) (xy 142.24 62.23))
(stroke (width 0) (type default))
(uuid 8b17cd68-7f37-4efc-9c54-5d66d0bca47a)
)
(wire (pts (xy 171.45 106.68) (xy 196.85 106.68))
(stroke (width 0) (type default))
(uuid 9266df39-e488-407f-84cc-596152998a25)
)
(wire (pts (xy 196.85 92.71) (xy 196.85 106.68))
(stroke (width 0) (type default))
(uuid 95e9300a-705c-4976-9c26-b2e2ee4696dd)
)
(wire (pts (xy 90.17 186.69) (xy 90.17 187.96))
(stroke (width 0) (type default))
(uuid 9c2fe429-a311-450a-aef5-ff5772fdd386)
)
(wire (pts (xy 86.36 114.3) (xy 127 114.3))
(stroke (width 0) (type default))
(uuid 9c91a2bd-058e-48f4-8585-d74522bae004)
)
(wire (pts (xy 48.26 110.49) (xy 64.77 110.49))
(stroke (width 0) (type default))
(uuid 9f584f6f-3b50-4fc4-9e77-c951eeed8ae0)
)
(wire (pts (xy 129.54 76.2) (xy 129.54 110.49))
(stroke (width 0) (type default))
(uuid 9f5e1371-2d4e-47de-ad06-a220127c42d4)
)
(wire (pts (xy 219.71 87.63) (xy 222.25 87.63))
(stroke (width 0) (type default))
(uuid 9f785c7b-86b1-4c44-9301-59ccdbdd620b)
)
(wire (pts (xy 35.56 110.49) (xy 35.56 114.3))
(stroke (width 0) (type default))
(uuid b1cd3c57-1b94-4f16-a552-cf549ec31d69)
)
(wire (pts (xy 62.23 121.92) (xy 62.23 114.3))
(stroke (width 0) (type default))
(uuid b6bc69ce-5f8c-4397-bb45-c33f4afcf704)
)
(wire (pts (xy 101.6 90.17) (xy 120.65 90.17))
(stroke (width 0) (type default))
(uuid bcd0fce5-a76f-4cd8-880d-d5e3b20893f9)
)
(wire (pts (xy 92.71 128.27) (xy 92.71 125.73))
(stroke (width 0) (type default))
(uuid c233e0fa-67dd-4bcb-b300-98c49d41fdac)
)
(wire (pts (xy 223.52 90.17) (xy 222.25 90.17))
(stroke (width 0) (type default))
(uuid ce2ea74e-0951-421c-9301-e42b4a29f141)
)
(wire (pts (xy 196.85 69.85) (xy 196.85 85.09))
(stroke (width 0) (type default))
(uuid d5794b77-113a-41b5-b7d6-7af88d758565)
)
(wire (pts (xy 40.64 110.49) (xy 35.56 110.49))
(stroke (width 0) (type default))
(uuid d9e93458-1ad7-4eb6-8d96-728efe82a5b2)
)
(wire (pts (xy 86.36 128.27) (xy 86.36 125.73))
(stroke (width 0) (type default))
(uuid daf76d19-20a1-4d21-8154-81b992b2aeb6)
)
(wire (pts (xy 50.8 114.3) (xy 48.26 114.3))
(stroke (width 0) (type default))
(uuid debc9597-eb8b-4bbd-a2a2-475720559cff)
)
(wire (pts (xy 129.54 110.49) (xy 142.24 110.49))
(stroke (width 0) (type default))
(uuid debe781e-6870-4826-8888-1686ce039a91)
)
(wire (pts (xy 81.28 186.69) (xy 81.28 187.96))
(stroke (width 0) (type default))
(uuid e054e5b3-e2ef-4730-9154-ec17a313eef3)
)
(wire (pts (xy 74.93 121.92) (xy 74.93 114.3))
(stroke (width 0) (type default))
(uuid e101cca3-f647-46e6-b691-1456f191499f)
)
(wire (pts (xy 127 73.66) (xy 127 114.3))
(stroke (width 0) (type default))
(uuid e1558929-5a3e-4479-9444-4664712592c8)
)
(wire (pts (xy 48.26 114.3) (xy 48.26 110.49))
(stroke (width 0) (type default))
(uuid e1bfbcca-b423-4261-a65e-5a9721f15060)
)
(text "100W" (at 149.86 72.39 0)
(effects (font (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 228b0b4a-fcbe-47bc-96bd-a8606af8ea40)
)
(text "+/-VS=30V" (at 13.97 195.58 0)
(effects (font (size 2.54 2.54)) (justify left bottom))
(uuid 4345964c-9712-4f1d-8c8f-ad375a00a614)
)
(text "100W" (at 149.86 109.22 0)
(effects (font (size 3 3) (thickness 0.6) bold) (justify left bottom))
(uuid 5d40084c-6a59-442c-9a9e-c2d426f80953)
)
(text "(1.5V)" (at 29.21 110.49 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f8ed8094-094f-4b52-93f3-10d7472e0c4e)
)
(text "30V\nMAX" (at 30.48 52.07 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid f9db8236-3b8f-4ad1-acae-74272b1b6c99)
)
(label "MUTE" (at 134.62 73.66 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 1023e379-e692-43f6-b059-75114846f4cc)
)
(label "IN2" (at 134.62 107.95 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 17aae768-998d-44ac-ac51-7582ee842609)
)
(label "OUT1" (at 217.17 85.09 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 2b427dc5-5fd4-4f59-8f29-161a4c3e7a0c)
)
(label "-VS" (at 46.99 53.34 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 3a69e7be-746c-423e-93f3-9f7880ca2281)
)
(label "STBY" (at 134.62 76.2 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 470b8667-e25d-4baf-a291-af1dad4ebfcf)
)
(label "EN" (at 36.83 110.49 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5609b2a3-4495-47cb-91d1-670ce0ab43a8)
)
(label "IN1" (at 134.62 71.12 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 5d8eb1d8-5bcd-4748-8970-7f5ba54836ee)
)
(label "IN2" (at 106.68 90.17 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 66300631-dd5c-4507-8261-da780027ef9f)
)
(label "+VS" (at 46.99 48.26 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 687ee49d-4da3-4b1b-9d45-dcc78b6bc3a6)
)
(label "+VS" (at 134.62 64.77 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 7a3c498c-1ba5-4d2a-a450-361ee808e74b)
)
(label "OUT1" (at 177.8 69.85 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 80abcc95-5d8a-4aca-a62b-102502a83c8d)
)
(label "MUTE" (at 107.95 114.3 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid 9e9663af-4aba-412f-b5f5-c8c9c154e40e)
)
(label "-VS" (at 134.62 62.23 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid a4b2e645-3304-4c62-8449-d437745b98f0)
)
(label "OUT2" (at 217.17 92.71 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid aee03bab-6f5e-4443-8f76-afe27de8c12d)
)
(label "STBY" (at 134.62 110.49 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid baf35366-7e15-4414-b9ad-e19d8a4d6806)
)
(label "+VS" (at 35.56 92.71 270) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bba9c386-a71c-4f0c-8625-76b98056d37d)
)
(label "OUT2" (at 177.8 106.68 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid bc5ff78f-8cad-454d-97bf-a943af3147ad)
)
(label "IN1" (at 106.68 85.09 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid d59c42d8-9348-4223-b2f0-1de599e78840)
)
(label "+VS" (at 134.62 101.6 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ded1d9e5-3d58-4cf2-ac42-22430873922d)
)
(label "MUTE" (at 134.62 114.3 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid e3cc286a-34f5-4bb7-a9b6-c8ecc038c7fc)
)
(label "STBY" (at 107.95 110.49 180) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify right bottom))
(uuid eb375f3b-8bdc-4d97-85d2-9348dff34920)
)
(label "-VS" (at 134.62 99.06 0) (fields_autoplaced)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid ee5b382f-3c9c-4270-a943-df5e98971df8)
)
(symbol (lib_id "Device:R") (at 68.58 114.3 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060922304)
(property "Reference" "R5" (at 68.58 114.3 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "30K" (at 68.58 116.84 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (at 68.58 116.078 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 68.58 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8e2f048b-4bd9-4cb9-a032-d60948710dde))
(pin "2" (uuid 99026473-a1a3-4381-9592-33c9e408e982))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2"
(reference "R5") (unit 1)
)
)
)
)
(symbol (lib_id "TDA7294-rescue:CP1-Device") (at 86.36 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000609227e2)
(property "Reference" "C1" (at 83.4644 120.7516 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10uF" (at 83.4644 123.063 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (at 86.36 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 86.36 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 9756ce04-5908-4d72-b496-e6236affceb8))
(pin "2" (uuid d628b1be-2180-4a53-86f7-409d8c8f0de5))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2"
(reference "C1") (unit 1)
)
)
)
)
(symbol (lib_id "TDA7294-rescue:CP1-Device") (at 92.71 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-0000609281c1)
(property "Reference" "C2" (at 95.631 120.7516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "10uF" (at 95.631 123.063 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (at 92.71 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 92.71 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid caeb3053-7de0-4db1-a576-0f61626decee))
(pin "2" (uuid 2ecb5d21-37eb-48cf-9695-596d9f91d624))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2"
(reference "C2") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 68.58 110.49 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00006092ab82)
(property "Reference" "R4" (at 68.58 110.49 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "20K" (at 68.58 107.95 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (at 68.58 112.268 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 68.58 110.49 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid e811ac65-aec5-44b2-809c-06a7e82aff19))
(pin "2" (uuid 20944ecf-c410-460f-abcf-d96e7fffb13c))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2"
(reference "R4") (unit 1)
)
)
)
)
(symbol (lib_id "Device:R") (at 54.61 114.3 270) (mirror x) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00006092d32c)
(property "Reference" "R3" (at 54.61 114.3 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "10K" (at 54.61 116.84 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Resistor_THT:R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal" (at 54.61 116.078 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 54.61 114.3 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 8557dcbd-319c-4f47-86de-4cef1b3f9a36))
(pin "2" (uuid 87fbc9a3-b807-48ad-b6f6-084d2dc1dddc))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2"
(reference "R3") (unit 1)
)
)
)
)
(symbol (lib_id "Device:D") (at 68.58 121.92 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-000060937f04)
(property "Reference" "D1" (at 68.58 125.095 0)
(effects (font (size 1.27 1.27)))
)
(property "Value" "1N4148" (at 68.58 127.4064 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "Diode_THT:D_A-405_P10.16mm_Horizontal" (at 68.58 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (at 68.58 121.92 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 85ea0c81-3637-431e-8d5a-2dbb7b6cd817))
(pin "2" (uuid 76572734-ac57-4d5a-9d24-a50d8d03c493))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2"
(reference "D1") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 86.36 128.27 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00006093c537)
(property "Reference" "#PWR02" (at 86.36 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 86.487 132.6642 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 86.36 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 86.36 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 4c07f3aa-f181-4a9e-9a92-44f6733a499a))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2"
(reference "#PWR02") (unit 1)
)
)
)
)
(symbol (lib_id "power:GND") (at 92.71 128.27 0) (unit 1)
(in_bom yes) (on_board yes) (dnp no)
(uuid 00000000-0000-0000-0000-00006093ccd9)
(property "Reference" "#PWR03" (at 92.71 134.62 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (at 92.837 132.6642 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (at 92.71 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (at 92.71 128.27 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 07263395-162f-463c-91e8-90f00ae5bb6b))
(instances
(project "TDA7294"
(path "/9799c5e9-9628-4b6d-8b70-d4ded1559ff2"
(reference "#PWR03") (unit 1)
)
)
)
)
(symbol (lib_id "TDA7294-rescue:Jumper_NO_Small-Device") (at 43.18 110.49 0) (unit 1)