-
Notifications
You must be signed in to change notification settings - Fork 0
/
resolver.kicad_sch
1095 lines (1060 loc) · 41.3 KB
/
resolver.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 20211123) (generator eeschema)
(uuid 24196388-c38c-4537-b4fe-de78b159df47)
(paper "A4")
(lib_symbols
(symbol "prius_gen2-rescue:+5V-power-prius_gen2-rescue" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V-power-prius_gen2-rescue" (id 1) (at 0 3.556 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "+5V-power-prius_gen2-rescue_0_1"
(polyline
(pts
(xy -0.762 1.27)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 0)
(xy 0 2.54)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 0 2.54)
(xy 0.762 1.27)
)
(stroke (width 0) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "+5V-power-prius_gen2-rescue_1_1"
(pin power_in line (at 0 0 90) (length 0) hide
(name "+5V" (effects (font (size 1.27 1.27))))
(number "1" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "prius_gen2-rescue:C-Device-prius_gen2-rescue" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes)
(property "Reference" "C" (id 0) (at 0.635 2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "C-Device-prius_gen2-rescue" (id 1) (at 0.635 -2.54 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 0.9652 -3.81 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "C_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "C-Device-prius_gen2-rescue_0_1"
(polyline
(pts
(xy -2.032 -0.762)
(xy 2.032 -0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.032 0.762)
(xy 2.032 0.762)
)
(stroke (width 0.508) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "C-Device-prius_gen2-rescue_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 2.794)
(name "~" (effects (font (size 1.27 1.27))))
(number "2" (effects (font (size 1.27 1.27))))
)
)
)
(symbol "prius_gen2-rescue:GND-power-prius_gen2-rescue" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "#PWR" (id 0) (at 0 -6.35 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND-power-prius_gen2-rescue" (id 1) (at 0 -3.81 0)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "GND-power-prius_gen2-rescue_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) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "GND-power-prius_gen2-rescue_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))))
)
)
)
(symbol "prius_gen2-rescue:R-Device-prius_gen2-rescue" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes)
(property "Reference" "R" (id 0) (at 2.032 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Value" "R-Device-prius_gen2-rescue" (id 1) (at 0 0 90)
(effects (font (size 1.27 1.27)))
)
(property "Footprint" "" (id 2) (at -1.778 0 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "ki_fp_filters" "R_*" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) hide)
)
(symbol "R-Device-prius_gen2-rescue_0_1"
(rectangle (start -1.016 -2.54) (end 1.016 2.54)
(stroke (width 0.254) (type default) (color 0 0 0 0))
(fill (type none))
)
)
(symbol "R-Device-prius_gen2-rescue_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 "prius_gen2-rescue:TDA2822D-TDA2822D-prius_gen2-rescue" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes)
(property "Reference" "U" (id 0) (at 5.08 3.175 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Value" "TDA2822D-TDA2822D-prius_gen2-rescue" (id 1) (at 5.08 -5.08 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
)
(property "Footprint" "SOIC127P600X175-8N" (id 2) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Datasheet" "" (id 3) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "STANDARD" "IPC-7351B" (id 4) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MANUFACTURER" "ST Microelectronics" (id 5) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "1.75 mm" (id 6) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "PARTREV" "September 2003" (id 7) (at 0 0 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "ki_locked" "" (id 8) (at 0 0 0)
(effects (font (size 1.27 1.27)))
)
(symbol "TDA2822D-TDA2822D-prius_gen2-rescue_0_0"
(text "GND" (at 3.81 -4.445 900)
(effects (font (size 0.8128 0.8128)) (justify left bottom))
)
(text "VCC" (at 3.81 3.175 900)
(effects (font (size 0.8128 0.8128)) (justify left bottom))
)
)
(symbol "TDA2822D-TDA2822D-prius_gen2-rescue_1_0"
(polyline
(pts
(xy -2.54 -5.08)
(xy 7.62 0)
)
(stroke (width 0.4064) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 5.08)
(xy -2.54 -5.08)
)
(stroke (width 0.4064) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -2.54)
(xy -0.635 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 2.54)
(xy -0.635 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -1.905)
(xy -1.27 -3.175)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 7.62 0)
(xy -2.54 5.08)
)
(stroke (width 0.4064) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin output line (at 12.7 0 180) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "1" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 2.54 7.62 270) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "2" (effects (font (size 1.016 1.016))))
)
(pin power_in line (at 2.54 -7.62 90) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "4" (effects (font (size 1.016 1.016))))
)
(pin input line (at -7.62 -2.54 0) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "7" (effects (font (size 1.016 1.016))))
)
(pin input line (at -7.62 2.54 0) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "8" (effects (font (size 1.016 1.016))))
)
)
(symbol "TDA2822D-TDA2822D-prius_gen2-rescue_2_0"
(polyline
(pts
(xy -2.54 -5.08)
(xy 7.62 0)
)
(stroke (width 0.4064) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -2.54 5.08)
(xy -2.54 -5.08)
)
(stroke (width 0.4064) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 -2.54)
(xy -0.635 -2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.905 2.54)
(xy -0.635 2.54)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy -1.27 -1.905)
(xy -1.27 -3.175)
)
(stroke (width 0.1524) (type default) (color 0 0 0 0))
(fill (type none))
)
(polyline
(pts
(xy 7.62 0)
(xy -2.54 5.08)
)
(stroke (width 0.4064) (type default) (color 0 0 0 0))
(fill (type none))
)
(pin output line (at 12.7 0 180) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "3" (effects (font (size 1.016 1.016))))
)
(pin input line (at -7.62 2.54 0) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "5" (effects (font (size 1.016 1.016))))
)
(pin input line (at -7.62 -2.54 0) (length 5.08)
(name "~" (effects (font (size 1.016 1.016))))
(number "6" (effects (font (size 1.016 1.016))))
)
)
)
)
(junction (at 102.87 100.33) (diameter 0) (color 0 0 0 0)
(uuid 2ed9f93e-670c-43ef-9294-2e0b9f9b6f47)
)
(junction (at 178.435 88.9) (diameter 0) (color 0 0 0 0)
(uuid 2f62b1dd-b532-4cd7-b89b-4d1844ca5cdb)
)
(junction (at 156.21 88.9) (diameter 0) (color 0 0 0 0)
(uuid 3afd3d65-25c5-447a-a4c9-9b3446149351)
)
(junction (at 151.765 77.47) (diameter 0) (color 0 0 0 0)
(uuid 468ee4ee-2528-4b88-9890-4da7387dd733)
)
(junction (at 192.405 107.95) (diameter 0) (color 0 0 0 0)
(uuid 632bc1a9-55b4-498e-aeab-0d0d1e395236)
)
(junction (at 102.87 110.49) (diameter 0) (color 0 0 0 0)
(uuid 6342a7a0-d692-4cb5-aa25-392d3745f8cd)
)
(junction (at 138.43 77.47) (diameter 0) (color 0 0 0 0)
(uuid 83b6917d-ab42-4559-8686-73edb6d1c95e)
)
(junction (at 166.37 88.9) (diameter 0) (color 0 0 0 0)
(uuid 860d6849-13e6-4c79-882d-a1e132f4566a)
)
(junction (at 114.3 77.47) (diameter 0) (color 0 0 0 0)
(uuid 898a1fc9-6219-4637-a74f-5a2ee346077c)
)
(junction (at 126.365 77.47) (diameter 0) (color 0 0 0 0)
(uuid ab5156a4-4513-4d01-b446-84ddffb135b4)
)
(junction (at 166.37 105.41) (diameter 0) (color 0 0 0 0)
(uuid b04f8ab1-c6c5-41d9-a92c-32c6d9302752)
)
(junction (at 192.405 74.93) (diameter 0) (color 0 0 0 0)
(uuid b977bf96-f299-4a89-af3e-91c078476c85)
)
(junction (at 126.365 88.9) (diameter 0) (color 0 0 0 0)
(uuid bc1d09ff-e3d7-4c23-b689-217aaf4dd8bb)
)
(junction (at 151.765 88.9) (diameter 0) (color 0 0 0 0)
(uuid bfe63b45-310a-4a0b-9d0f-5b8a1ac4fbee)
)
(junction (at 138.43 88.9) (diameter 0) (color 0 0 0 0)
(uuid e85bfd4f-fc24-4853-910b-ab854b9a41e4)
)
(wire (pts (xy 138.43 87.63) (xy 138.43 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 0121d820-d2a2-472b-bc13-95eb6a1c6705)
)
(wire (pts (xy 114.3 80.01) (xy 114.3 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 05a53bde-f4c7-4e73-a28c-cd74595cfdb9)
)
(wire (pts (xy 166.37 105.41) (xy 168.275 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 087df632-1032-45bc-9c3d-effbe32558f9)
)
(wire (pts (xy 160.655 93.345) (xy 160.655 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 09b2fa44-8dff-442d-a111-a3a218cc389e)
)
(wire (pts (xy 114.3 77.47) (xy 112.395 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 154e5548-1f16-47d0-bede-47cad3b1456a)
)
(wire (pts (xy 107.315 110.49) (xy 107.315 109.22))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 15dbd4e7-091c-415f-a924-b0ab93428356)
)
(wire (pts (xy 116.84 77.47) (xy 114.3 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 17b3122a-41ae-4456-8ce6-4c9aa7537434)
)
(wire (pts (xy 192.405 74.93) (xy 188.595 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 196d8546-dc1b-4b31-bd3f-1c16a4002fb4)
)
(wire (pts (xy 139.7 77.47) (xy 138.43 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1b553a75-253d-4bab-8b10-2a703d063600)
)
(wire (pts (xy 102.87 100.33) (xy 97.79 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 1dc06b25-a172-411e-8433-3d12277902cb)
)
(wire (pts (xy 104.775 77.47) (xy 101.6 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 204fa2a9-24b8-4160-968d-c521d13f0bc8)
)
(wire (pts (xy 160.655 105.41) (xy 160.655 100.965))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 297107ee-c4ee-402a-8c4b-34314d38140a)
)
(wire (pts (xy 151.765 77.47) (xy 168.275 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2b0c1488-8475-4b1f-b488-3fd10a61598b)
)
(wire (pts (xy 156.21 110.49) (xy 156.21 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 2cd5f0de-5d6a-43ca-9dd9-6cd18e864bab)
)
(wire (pts (xy 126.365 77.47) (xy 126.365 80.01))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 304d5121-f5ec-4d16-9c0c-e4a997c55dd7)
)
(wire (pts (xy 192.405 86.995) (xy 192.405 84.455))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 34c576f0-5079-49f3-8f17-c86f43da204f)
)
(wire (pts (xy 126.365 88.9) (xy 138.43 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3729e151-3833-4fba-8524-61089d43e3c4)
)
(wire (pts (xy 114.3 87.63) (xy 114.3 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 3d9d4672-b4ff-405f-9c03-9b989e089937)
)
(wire (pts (xy 151.765 77.47) (xy 151.765 79.375))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4604c012-45e6-41d5-8f04-08a3e9dcccab)
)
(wire (pts (xy 166.37 100.965) (xy 166.37 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 4f67e9cf-d235-49ca-b708-a8cc047a1fe5)
)
(wire (pts (xy 97.79 109.22) (xy 97.79 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 54a455af-6f01-413c-964e-c3aba0ffa4a1)
)
(wire (pts (xy 166.37 93.345) (xy 166.37 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 57dc1d58-a8a4-428e-aa97-a6e3f95c49a9)
)
(wire (pts (xy 178.435 88.9) (xy 178.435 82.55))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 581169c1-a1e1-4d9a-83ce-8a60bd1bb3fd)
)
(wire (pts (xy 102.87 111.76) (xy 102.87 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 58547def-7345-448f-aa89-b38d97a280aa)
)
(wire (pts (xy 107.315 101.6) (xy 107.315 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5beb6336-d6e4-40ac-aa47-e40bfd836e97)
)
(wire (pts (xy 192.405 107.95) (xy 188.595 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 5cfb634b-708e-4b61-bea1-f2f4d16db32d)
)
(wire (pts (xy 126.365 77.47) (xy 124.46 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 623dd7f2-3158-446a-ac51-761f9f83b4d7)
)
(wire (pts (xy 138.43 88.9) (xy 151.765 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6765410e-9312-4afc-8fb2-29f39315da5e)
)
(wire (pts (xy 178.435 64.77) (xy 178.435 67.31))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 67bcae6a-6806-4161-9e64-0050c11c303d)
)
(wire (pts (xy 151.765 86.995) (xy 151.765 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 6899d636-6e47-49bf-b5e3-45a0e46c4b2a)
)
(polyline (pts (xy 86.36 139.7) (xy 86.36 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 697df1ea-8519-41ae-bac5-c0fb3013bc36)
)
(wire (pts (xy 166.37 105.41) (xy 160.655 105.41))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 7f91d8b5-a21a-4c9e-8c25-4034570c851d)
)
(wire (pts (xy 192.405 109.855) (xy 192.405 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 81f7da54-aa0f-49b5-863e-6d548e62b566)
)
(wire (pts (xy 168.275 110.49) (xy 156.21 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 87581544-8671-4506-9c59-9d86f2f11136)
)
(wire (pts (xy 138.43 80.01) (xy 138.43 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8a4b2d74-3633-4cad-8659-9c69da29909f)
)
(wire (pts (xy 192.405 97.155) (xy 192.405 94.615))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8bc50a2f-414d-4755-ac12-30c2e1edf7cb)
)
(wire (pts (xy 97.79 110.49) (xy 102.87 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8c7bb104-f471-437c-acbc-d93fe8acd03d)
)
(wire (pts (xy 138.43 77.47) (xy 136.525 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8cece86e-a4e2-4439-ab3b-b0baa8f5379e)
)
(polyline (pts (xy 208.915 55.88) (xy 208.915 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 8f9d4057-e9af-4ea2-8bd3-549de00326fb)
)
(wire (pts (xy 192.405 76.835) (xy 192.405 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 954fde4c-fd67-4ac9-b441-ea18039bfebc)
)
(wire (pts (xy 166.37 88.9) (xy 178.435 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9ade8e75-7b8c-41c2-be45-e5c086e69b55)
)
(polyline (pts (xy 86.36 55.88) (xy 208.915 55.88))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid 9c82302f-4ed1-48d5-9f2a-e5651ccb5b90)
)
(wire (pts (xy 198.12 107.95) (xy 192.405 107.95))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid a22764a1-c1ce-4221-9840-982fae47a609)
)
(wire (pts (xy 192.405 120.015) (xy 192.405 117.475))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid aa7f3da6-a884-4ba8-8e3a-1e04499838a8)
)
(wire (pts (xy 178.435 88.9) (xy 178.435 90.17))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b258c9a8-edd7-4a4e-82c4-3fb30cd4da82)
)
(wire (pts (xy 114.3 88.9) (xy 126.365 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid b936f71c-dfa1-4eb6-942c-9bcd6653a69c)
)
(wire (pts (xy 107.315 100.33) (xy 102.87 100.33))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid bfecb9b9-e894-42f3-a88c-f75b6b31f21c)
)
(wire (pts (xy 198.12 74.93) (xy 192.405 74.93))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c2702d19-5fb6-4ab1-8b10-4443cd6d7ef2)
)
(wire (pts (xy 192.405 130.175) (xy 192.405 127.635))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid c6265933-bcb8-4741-9ea2-e054ede0da44)
)
(wire (pts (xy 102.87 110.49) (xy 107.315 110.49))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid d34dc284-f144-4084-a601-b2c17d1ee7fc)
)
(wire (pts (xy 97.79 100.33) (xy 97.79 101.6))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid dc9776f5-d929-4c3c-837d-f0b528f66e89)
)
(wire (pts (xy 128.905 77.47) (xy 126.365 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e32481d8-7fcb-4f80-8309-34a229871299)
)
(wire (pts (xy 156.21 88.9) (xy 166.37 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid e98b4fcc-5085-44d4-b8ba-a499a8b09b6d)
)
(polyline (pts (xy 208.915 139.7) (xy 86.36 139.7))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eaa7dc3a-9cac-4b0b-9be9-186d842cc185)
)
(wire (pts (xy 102.87 100.33) (xy 102.87 99.06))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid eb9e3d42-472f-4024-ba24-57502dc8afde)
)
(wire (pts (xy 126.365 87.63) (xy 126.365 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid ebb9c7f9-83c3-472e-8559-6cc384d86a97)
)
(wire (pts (xy 160.655 72.39) (xy 168.275 72.39))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid f0afe8a2-cc1a-42e6-9d19-982f4bf39c09)
)
(wire (pts (xy 151.765 88.9) (xy 156.21 88.9))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fb04a7ff-72ac-46c7-918d-7c5f1a292cd8)
)
(wire (pts (xy 147.32 77.47) (xy 151.765 77.47))
(stroke (width 0) (type default) (color 0 0 0 0))
(uuid fe2f7612-8a35-4101-96f8-8e99707d4d16)
)
(text "Resolver Excitation" (at 88.265 59.69 0)
(effects (font (size 1.27 1.27)) (justify left bottom))
(uuid 9b04c1f4-0a1d-443e-804b-c987d6caf2c9)
)
(hierarchical_label "R1" (shape input) (at 198.12 74.93 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid b73bdbe1-cdc9-4d1a-9f0a-616fcc8a800d)
)
(hierarchical_label "R2" (shape input) (at 198.12 107.95 0)
(effects (font (size 1.27 1.27)) (justify left))
(uuid e312a73b-dbb7-486c-a258-e6818c911482)
)
(hierarchical_label "TIM3_ETR" (shape input) (at 101.6 77.47 180)
(effects (font (size 1.27 1.27)) (justify right))
(uuid e7e39421-11bb-4adb-94b6-d7995b81950f)
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 108.585 77.47 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060eac28e)
(property "Reference" "R27" (id 0) (at 108.585 72.2122 90))
(property "Value" "330" (id 1) (at 108.585 74.5236 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 108.585 75.692 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 108.585 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 74b00aaf-dd32-4c88-9f22-99a8df5c1361))
(pin "2" (uuid fa5ca95c-abf4-4f87-99a7-2bdab10df325))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 120.65 77.47 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060eac478)
(property "Reference" "R28" (id 0) (at 120.65 72.2122 90))
(property "Value" "6.8k" (id 1) (at 120.65 74.5236 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 120.65 75.692 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 120.65 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 3a766dd2-1687-429a-9c1d-58f11c10d94c))
(pin "2" (uuid 02b68f9e-1226-40b5-8a27-7d8ed7f6cc0c))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 132.715 77.47 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060eac5ba)
(property "Reference" "R29" (id 0) (at 132.715 72.2122 90))
(property "Value" "10k" (id 1) (at 132.715 74.5236 90))
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 132.715 75.692 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 132.715 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 06f4e3c8-1a58-473d-acb8-f1d90466de99))
(pin "2" (uuid 8a31b70e-ba78-4822-bd51-d0b917aad9b1))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 151.765 83.185 180) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060eac728)
(property "Reference" "R30" (id 0) (at 153.543 82.0166 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Value" "10k" (id 1) (at 153.543 84.328 0)
(effects (font (size 1.27 1.27)) (justify right))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 153.543 83.185 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 151.765 83.185 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid cd17e90a-0975-4a16-b3e2-cccfc510e0c5))
(pin "2" (uuid c2e7fb3a-be32-4999-bf96-fbdb27dcb013))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 114.3 83.82 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060eace0e)
(property "Reference" "C22" (id 0) (at 117.221 82.6516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "22n" (id 1) (at 117.221 84.963 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 115.2652 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 114.3 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid eae6bb42-e778-4319-aa5a-2d30775851ed))
(pin "2" (uuid 5532e3d0-6833-4b0d-8292-5038db48b787))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 126.365 83.82 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060ead11d)
(property "Reference" "C23" (id 0) (at 129.286 82.6516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "22n" (id 1) (at 129.286 84.963 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 127.3302 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 126.365 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 94b7abdd-5a84-40d5-8554-22d378e95393))
(pin "2" (uuid 86922656-7191-47aa-a532-524c5b9f9fca))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 138.43 83.82 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060ead325)
(property "Reference" "C24" (id 0) (at 141.351 82.6516 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "22n" (id 1) (at 141.351 84.963 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 139.3952 87.63 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 138.43 83.82 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 126510ff-f6c9-4730-9281-dedc13c8df48))
(pin "2" (uuid 760d5835-9d0f-4e68-9a41-a077a36995e6))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 143.51 77.47 270) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060eada96)
(property "Reference" "C25" (id 0) (at 143.51 71.0692 90))
(property "Value" "22n" (id 1) (at 143.51 73.3806 90))
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 139.7 78.4352 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 143.51 77.47 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 634e08c9-175a-477b-9314-ea11b1808ab9))
(pin "2" (uuid aca6db14-3644-4e72-a37c-96a8b2f51967))
)
(symbol (lib_id "prius_gen2-rescue:GND-power-prius_gen2-rescue") (at 178.435 90.17 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060eafa6d)
(property "Reference" "#PWR0140" (id 0) (at 178.435 96.52 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 178.562 94.5642 0))
(property "Footprint" "" (id 2) (at 178.435 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 178.435 90.17 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 52853c47-1cb6-4f17-b133-fff66be2469f))
)
(symbol (lib_id "prius_gen2-rescue:+5V-power-prius_gen2-rescue") (at 102.87 99.06 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060ebe0ba)
(property "Reference" "#PWR0141" (id 0) (at 102.87 102.87 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 103.251 94.6658 0))
(property "Footprint" "" (id 2) (at 102.87 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 102.87 99.06 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 15b4231a-55c6-426d-bd69-235cf9575fa9))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 97.79 105.41 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060ebe262)
(property "Reference" "C20" (id 0) (at 100.711 104.2416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "1uF" (id 1) (at 100.711 106.553 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 98.7552 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 97.79 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 03d9a9a8-b6fb-493f-a8fa-467e9e505dac))
(pin "2" (uuid 339bef78-bb4f-4fd3-9785-d56dc0a6abe0))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 107.315 105.41 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060ebe45e)
(property "Reference" "C21" (id 0) (at 110.236 104.2416 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100uF" (id 1) (at 110.236 106.553 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_Elec_6.3x7.7" (id 2) (at 108.2802 109.22 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 107.315 105.41 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 24db0e3d-3104-473e-9247-ed10f04a4e4e))
(pin "2" (uuid 67ecd798-65f3-48e2-8b90-c35064e71b1e))
)
(symbol (lib_id "prius_gen2-rescue:GND-power-prius_gen2-rescue") (at 102.87 111.76 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000060ebeb3e)
(property "Reference" "#PWR0142" (id 0) (at 102.87 118.11 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 102.997 116.1542 0))
(property "Footprint" "" (id 2) (at 102.87 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 102.87 111.76 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid fdd929c1-e71a-4f82-bf5e-86104caa099a))
)
(symbol (lib_id "prius_gen2-rescue:TDA2822D-TDA2822D-prius_gen2-rescue") (at 175.895 74.93 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061606d5b)
(property "Reference" "U4" (id 0) (at 182.245 71.12 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "" (id 1) (at 181.61 78.105 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "" (id 2) (at 175.895 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Datasheet" "" (id 3) (at 175.895 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "STANDARD" "IPC-7351B" (id 4) (at 175.895 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MANUFACTURER" "ST Microelectronics" (id 5) (at 175.895 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "1.75 mm" (id 6) (at 175.895 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "PARTREV" "September 2003" (id 7) (at 175.895 74.93 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(pin "1" (uuid 68590b12-2083-414f-87cb-283acc6a5be6))
(pin "2" (uuid a626e965-b93a-4989-989d-7fcbc0ec09da))
(pin "4" (uuid aac30607-1311-4716-afe6-e2d7c213b731))
(pin "7" (uuid 8c323dcf-273c-403c-9fbc-b36e16f16499))
(pin "8" (uuid 959b7ac9-a4ed-42bb-8014-f3883e08e4b7))
(pin "3" (uuid 9f4f52b4-0ea9-4f64-b8e1-aad0544ffa72))
(pin "5" (uuid 27619e54-1b62-4bb5-9519-a493aab50bf8))
(pin "6" (uuid 6cb21a8c-ba70-493c-8609-db03757d41db))
)
(symbol (lib_id "prius_gen2-rescue:TDA2822D-TDA2822D-prius_gen2-rescue") (at 175.895 107.95 0) (unit 2)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000616074fb)
(property "Reference" "U4" (id 0) (at 182.88 104.14 0))
(property "Value" "" (id 1) (at 184.785 111.125 0))
(property "Footprint" "" (id 2) (at 175.895 107.95 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "Datasheet" "" (id 3) (at 175.895 107.95 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "STANDARD" "IPC-7351B" (id 4) (at 175.895 107.95 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MANUFACTURER" "ST Microelectronics" (id 5) (at 175.895 107.95 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "MAXIMUM_PACKAGE_HEIGHT" "1.75 mm" (id 6) (at 175.895 107.95 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(property "PARTREV" "September 2003" (id 7) (at 175.895 107.95 0)
(effects (font (size 1.27 1.27)) (justify left bottom) hide)
)
(pin "1" (uuid d3fe063e-f8be-46f4-8851-0b9399a4461c))
(pin "2" (uuid ae1e403c-890b-4eac-a5a0-66ff2dcbb8b2))
(pin "4" (uuid 84fe8ef2-0770-4be9-a6be-8e5cb361554f))
(pin "7" (uuid 06de5a0a-3948-4ac9-be83-cc62b83298d3))
(pin "8" (uuid 2e14ef00-92bd-40da-92c2-e022cf3613ca))
(pin "3" (uuid 1501c713-391e-4876-80fb-493e9e1ea352))
(pin "5" (uuid 3a701cfc-0f98-4df8-8cb0-6dd9c7fef43e))
(pin "6" (uuid d5fa34aa-7503-449f-a98d-e4a0a336477d))
)
(symbol (lib_id "prius_gen2-rescue:R-Device-prius_gen2-rescue") (at 192.405 80.645 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006160e8c8)
(property "Reference" "R31" (id 0) (at 194.183 79.4766 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "4.7" (id 1) (at 194.183 81.788 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Resistor_SMD:R_0603_1608Metric" (id 2) (at 190.627 80.645 90)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 192.405 80.645 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 45af47d3-a2e2-4944-beb1-112f06190e2d))
(pin "2" (uuid 6fef328d-c66e-4381-8634-9f129fffadb6))
)
(symbol (lib_id "prius_gen2-rescue:C-Device-prius_gen2-rescue") (at 192.405 90.805 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-00006160ef84)
(property "Reference" "C28" (id 0) (at 195.326 89.6366 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Value" "100n" (id 1) (at 195.326 91.948 0)
(effects (font (size 1.27 1.27)) (justify left))
)
(property "Footprint" "Capacitor_SMD:C_0603_1608Metric" (id 2) (at 193.3702 94.615 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "~" (id 3) (at 192.405 90.805 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 2f1d1e86-a3f7-4ce0-ab72-c912ed1c6767))
(pin "2" (uuid c4490aba-1d59-43ae-8353-01b83339fe84))
)
(symbol (lib_id "prius_gen2-rescue:GND-power-prius_gen2-rescue") (at 192.405 97.155 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-000061611699)
(property "Reference" "#PWR0143" (id 0) (at 192.405 103.505 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "GND" (id 1) (at 192.532 101.5492 0))
(property "Footprint" "" (id 2) (at 192.405 97.155 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 192.405 97.155 0)
(effects (font (size 1.27 1.27)) hide)
)
(pin "1" (uuid 068d7583-3beb-4621-83ed-bc8aafa8dbe5))
)
(symbol (lib_id "prius_gen2-rescue:+5V-power-prius_gen2-rescue") (at 178.435 64.77 0) (unit 1)
(in_bom yes) (on_board yes)
(uuid 00000000-0000-0000-0000-0000616132d9)
(property "Reference" "#PWR0144" (id 0) (at 178.435 68.58 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Value" "+5V" (id 1) (at 178.816 60.3758 0))
(property "Footprint" "" (id 2) (at 178.435 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)
(property "Datasheet" "" (id 3) (at 178.435 64.77 0)
(effects (font (size 1.27 1.27)) hide)
)