-
Notifications
You must be signed in to change notification settings - Fork 0
/
prius_gen2.net
2339 lines (2339 loc) · 89.8 KB
/
prius_gen2.net
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(export (version D)
(design
(source /home/kon/src/prius_g2_hardware/prius_gen2.sch)
(date "Wed 04 Aug 2021 07:01:40 PM PDT")
(tool "Eeschema 5.1.10-1.fc34")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source prius_gen2.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name "/Level Shifting/") (tstamps /611064E9/)
(title_block
(title)
(company)
(rev)
(date)
(source level_shifting.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /Connectors/) (tstamps /611C056E/)
(title_block
(title)
(company)
(rev)
(date)
(source connectors.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name /Resolver/) (tstamps /60EAB2A4/)
(title_block
(title)
(company)
(rev)
(date)
(source resolver.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name "/Power Supply/") (tstamps /60E19204/)
(title_block
(title)
(company)
(rev)
(date)
(source powersupply.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name "/Input Filter/") (tstamps /610CA2CA/)
(title_block
(title)
(company)
(rev)
(date)
(source inputfilter.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name /Communication/) (tstamps /60EC424A/)
(title_block
(title)
(company)
(rev)
(date)
(source communication.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref D1)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric_Castellated)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part LED-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60D335B5))
(comp (ref R2)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60D33E43))
(comp (ref Q1)
(value IRLZ14SPBF)
(footprint Package_TO_SOT_SMD:TO-252-2)
(datasheet http://www.infineon.com/dgdl/irlz34npbf.pdf?fileId=5546d462533600a40153567206892720)
(libsource (lib prius_gen2-rescue) (part IRLZ34N-Transistor_FET-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60DBEF5A))
(comp (ref Q2)
(value IRLZ14SPBF)
(footprint Package_TO_SOT_SMD:TO-252-2)
(datasheet http://www.infineon.com/dgdl/irlz34npbf.pdf?fileId=5546d462533600a40153567206892720)
(libsource (lib prius_gen2-rescue) (part IRLZ34N-Transistor_FET-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60DC043A))
(comp (ref R5)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6105F833))
(comp (ref R4)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 610B1A1A))
(comp (ref J2)
(value Conn_01x06)
(footprint Connector:Tag-Connect_TC2030-IDC-NL_2x03_P1.27mm_Vertical)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part Conn_01x06-Connector_Generic-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60E06842))
(comp (ref J1)
(value Conn_02x05_Odd_Even)
(footprint Connector_PinHeader_1.27mm:PinHeader_2x05_P1.27mm_Vertical_SMD)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part Conn_02x05_Odd_Even-Connector_Generic-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60E05B6A))
(comp (ref C12)
(value 4.7u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6108895C))
(comp (ref FB1)
(value Ferrite_Bead)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part Ferrite_Bead-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6109619A))
(comp (ref R1)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6175DF8C))
(comp (ref C3)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6125D44E))
(comp (ref C5)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6127923A))
(comp (ref C6)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61284E1A))
(comp (ref C7)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61290496))
(comp (ref C8)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6129B9C2))
(comp (ref C9)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 612A6E62))
(comp (ref C11)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 612B2555))
(comp (ref C10)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 6146D762))
(comp (ref R62)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61D3D68F))
(comp (ref R63)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61D6DCC6))
(comp (ref D7)
(value LED)
(footprint LED_SMD:LED_0603_1608Metric_Castellated)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part LED-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61096953))
(comp (ref R64)
(value 1k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61096A35))
(comp (ref SW2)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_EVQQ2)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part SW_Push-Switch-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 617B9E6A))
(comp (ref SW1)
(value SW_Push)
(footprint Button_Switch_SMD:SW_SPST_EVQQ2)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part SW_Push-Switch-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61853B13))
(comp (ref R3)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 618360B5))
(comp (ref C2)
(value 20pF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C105621)
(field (name mpn) CC0603JRNPO9BN200))
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 610AB54D))
(comp (ref C1)
(value 20pF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(fields
(field (name LCSC) C105621)
(field (name mpn) CC0603JRNPO9BN200))
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60D48CE0))
(comp (ref Y1)
(value 8MHz)
(footprint Crystal:Crystal_SMD_5032-2Pin_5.0x3.2mm)
(datasheet ~)
(fields
(field (name LCSC) C115962))
(libsource (lib prius_gen2-rescue) (part Crystal-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60D4741B))
(comp (ref C4)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C_Small-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 61593454))
(comp (ref U9)
(value STM32F103VBTx)
(footprint Package_QFP:LQFP-100_14x14mm_P0.5mm)
(datasheet http://www.st.com/st-web-ui/static/active/en/resource/technical/document/datasheet/CD00161566.pdf)
(libsource (lib prius_gen2-rescue) (part STM32F103VBTx-MCU_ST_STM32F1-prius_gen2-rescue) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 60F76AC7))
(comp (ref U2)
(value MCP602)
(footprint Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/21314g.pdf)
(libsource (lib prius_gen2-rescue) (part MCP602-Amplifier_Operational-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F5BF))
(comp (ref R12)
(value 33K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F5E3))
(comp (ref R7)
(value 100K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F5EB))
(comp (ref R8)
(value 100K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F5F1))
(comp (ref C15)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F5FD))
(comp (ref R13)
(value 15K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F60D))
(comp (ref R16)
(value 100K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F618))
(comp (ref R19)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F624))
(comp (ref R20)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F63D))
(comp (ref R17)
(value 100K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F643))
(comp (ref R15)
(value 15K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F649))
(comp (ref R14)
(value 33K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F64F))
(comp (ref R9)
(value 100K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F663))
(comp (ref R10)
(value 100K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F669))
(comp (ref C16)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F675))
(comp (ref R6)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F697))
(comp (ref C14)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F69D))
(comp (ref R11)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F6A3))
(comp (ref R18)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F6BE))
(comp (ref C17)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F6C4))
(comp (ref R21)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Level Shifting/") (tstamps /611064E9/))
(tstamp 6111F6CA))
(comp (ref R22)
(value 510)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 611D14EF))
(comp (ref R23)
(value 220)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 611D14FC))
(comp (ref C18)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 611D1502))
(comp (ref U3)
(value ULN2003A)
(footprint Package_SO:SOIC-16_4.55x10.3mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/uln2003a.pdf)
(libsource (lib prius_gen2-rescue) (part ULN2003A-Transistor_Array-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 6120D8B4))
(comp (ref R26)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 6121673C))
(comp (ref C19)
(value 1nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 6121FA1F))
(comp (ref R25)
(value 4K7)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 61220142))
(comp (ref R24)
(value 10K)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 612205C1))
(comp (ref J3)
(value Conn_01x23)
(footprint Downloads:TE_776228-1)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part Conn_01x23-Connector_Generic-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 60E8BF4D))
(comp (ref J4)
(value Conn_01x14)
(footprint Downloads:TE_776262-2)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part Conn_01x14-Connector_Generic-prius_gen2-rescue) (description ""))
(sheetpath (names /Connectors/) (tstamps /611C056E/))
(tstamp 60E8DD9D))
(comp (ref R27)
(value 3.3k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EAC28E))
(comp (ref R28)
(value 3.3k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EAC478))
(comp (ref R29)
(value 3.3k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EAC5BA))
(comp (ref R30)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EAC728))
(comp (ref C22)
(value 22n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EACE0E))
(comp (ref C23)
(value 22n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EAD11D))
(comp (ref C24)
(value 22n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EAD325))
(comp (ref C25)
(value 22n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EADA96))
(comp (ref C20)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EBE262))
(comp (ref C21)
(value 100uF)
(footprint Capacitor_SMD:C_Elec_6.3x7.7)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 60EBE45E))
(comp (ref U4)
(value TDA2822D)
(footprint Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm)
(fields
(field (name MANUFACTURER) "ST Microelectronics")
(field (name MAXIMUM_PACKAGE_HEIGHT) "1.75 mm")
(field (name PARTREV) "September 2003")
(field (name STANDARD) IPC-7351B))
(libsource (lib prius_gen2-rescue) (part TDA2822D-TDA2822D-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 61606D5B))
(comp (ref R31)
(value 4.7k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 6160E8C8))
(comp (ref C28)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 6160EF84))
(comp (ref R32)
(value 4.7k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 61615A70))
(comp (ref C29)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 61615B04))
(comp (ref C27)
(value 22n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 6161DBD5))
(comp (ref C26)
(value 10u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names /Resolver/) (tstamps /60EAB2A4/))
(tstamp 6161E12E))
(comp (ref U8)
(value AZ1117-3.3)
(footprint Package_TO_SOT_SMD:SOT-223-3_TabPin2)
(datasheet https://www.diodes.com/assets/Datasheets/AZ1117.pdf)
(libsource (lib prius_gen2-rescue) (part AZ1117-3.3-Regulator_Linear-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E19B1F))
(comp (ref D5)
(value D_Schottky)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part D_Schottky-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E1C178))
(comp (ref D4)
(value SM15T33CA)
(footprint Diode_SMD:D_SMC)
(datasheet https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF)
(libsource (lib prius_gen2-rescue) (part ESD9B3.3ST5G-Diode-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E1E16A))
(comp (ref U7)
(value LMR14020)
(footprint Package_SO:SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm)
(libsource (lib prius_gen2-rescue) (part LMR14020-lmr14020-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E1F8E0))
(comp (ref R37)
(value 1)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E21BB5))
(comp (ref C34)
(value 4.7uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E2218B))
(comp (ref L1)
(value 2.2uH)
(footprint Inductor_SMD:L_1210_3225Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part INDUCTOR-pspice-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E228C0))
(comp (ref C35)
(value 56uF)
(footprint Capacitor_THT:CP_Radial_D8.0mm_P3.50mm)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part CP-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E23CAA))
(comp (ref C36)
(value 1uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E24302))
(comp (ref R38)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E30342))
(comp (ref C37)
(value 10nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E311D9))
(comp (ref C38)
(value 100nF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E384EC))
(comp (ref D6)
(value D_Schottky)
(footprint Diode_SMD:D_SMA)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part D_Schottky-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E3A3D8))
(comp (ref L2)
(value 10u)
(footprint prius_gen2_kicad:MWSA0503)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part INDUCTOR-pspice-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E3ADD5))
(comp (ref R39)
(value 12k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E417F0))
(comp (ref R40)
(value 68k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E41BDB))
(comp (ref C39)
(value 330pF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E4437D))
(comp (ref C40)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E4C1B8))
(comp (ref C41)
(value 10uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E50974))
(comp (ref C42)
(value 4.7uF)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Power Supply/") (tstamps /60E19204/))
(tstamp 60E57387))
(comp (ref R46)
(value 3.3k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 61112451))
(comp (ref R47)
(value 3.3k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6111262B))
(comp (ref R48)
(value 3.3k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 61112888))
(comp (ref R49)
(value 3.3k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 61112A98))
(comp (ref C45)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 61116E18))
(comp (ref R50)
(value 1.2k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6111700F))
(comp (ref C46)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 61119644))
(comp (ref R51)
(value 1.2k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 611196AE))
(comp (ref C47)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6111BBB6))
(comp (ref R52)
(value 1.2k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6111BBBC))
(comp (ref C48)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6111C8DF))
(comp (ref R53)
(value 1.2k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6111C8E5))
(comp (ref C49)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6111D95E))
(comp (ref R54)
(value 1.2k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6111D964))
(comp (ref R45)
(value 4.7k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 61125FCC))
(comp (ref R41)
(value 510)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 611359E8))
(comp (ref R43)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 61135CED))
(comp (ref JP2)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part SolderJumper_2_Open-Jumper-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 611364A8))
(comp (ref C43)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6113A5DB))
(comp (ref R42)
(value 510)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6113ED6C))
(comp (ref R44)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6113ED72))
(comp (ref JP3)
(value SolderJumper_2_Open)
(footprint Jumper:SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part SolderJumper_2_Open-Jumper-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6113ED78))
(comp (ref C44)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6113ED8C))
(comp (ref R58)
(value 510)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 61157B0F))
(comp (ref R59)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6115C347))
(comp (ref R55)
(value 510)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6115F0D1))
(comp (ref C50)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6115F539))
(comp (ref C52)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part C-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6116D6A4))
(comp (ref R57)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6116D69E))
(comp (ref R61)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib prius_gen2-rescue) (part R-Device-prius_gen2-rescue) (description ""))
(sheetpath (names "/Input Filter/") (tstamps /610CA2CA/))
(tstamp 6116D698))
(comp (ref C51)
(value 1u)
(footprint Capacitor_SMD:C_0603_1608Metric)