forked from ciaa/Hardware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ciaa-pic.net
6441 lines (6441 loc) · 233 KB
/
ciaa-pic.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/hernan/repo_github/HardwareCIAA/PCB/PIC/ciaa-pic.sch)
(date "mié 14 sep 2016 15:18:54 ART")
(tool "Eeschema 4.0.2+dfsg1-2~bpo8+1-stable")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title CIAA-Microchip)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source ciaa-pic.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 2) (name /Ethernet/) (tstamps /52C34F34/)
(title_block
(title CIAA-Microchip)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source ethernet.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 3) (name /RS485_RS232_CAN/) (tstamps /52C1F703/)
(title_block
(title RS485/RS232/CAN)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source rsS485_rs232_can.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 4) (name "/USB OTG/") (tstamps /52C66C60/)
(title_block
(title USB)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source usb_otg.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 5) (name "/Entradas Digitales/") (tstamps /52CA388F/)
(title_block
(title CIAA-Microchip)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source din.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 6) (name "/Salidas Digitales/") (tstamps /52CC00C6/)
(title_block
(title "SALIDAS DIGITALES")
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source dout.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 7) (name "/Ent. Analógicas/") (tstamps /52C8476B/)
(title_block
(title "ENTRADAS ANALOGICAS")
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source analog.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 8) (name "/Salida Analógica/") (tstamps /532C7A7B/)
(title_block
(title CIAA-Microchip)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source analog_out.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 9) (name "/Memorias NV/") (tstamps /52C256D0/)
(title_block
(title CIAA-Microchip)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source mem.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 10) (name /Fuente/) (tstamps /52C2B8A1/)
(title_block
(title CIAA-Microchip)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source fuente.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 11) (name /CPU/) (tstamps /52C1CAF4/)
(title_block
(title CPU)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source cpu.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 12) (name /GPIO/) (tstamps /52CA0F12/)
(title_block
(title CIAA-Microchip)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source gpio.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value ""))))
(sheet (number 13) (name /JTAG/) (tstamps /577C4855/)
(title_block
(title JTAG)
(company "CIAA - COMPUTADORA INDUSTRIAL ABIERTA ARGENTINA - www.proyecto-ciaa.com.ar")
(rev 1.0)
(date "16 feb 2016")
(source JTAG.sch)
(comment (number 1) (value "Autores: Ver 'documents/CHANGES.txt' Licencia: Ver 'documents/LICENCIA_CIAA_PIC.txt'"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref GS6)
(value GS3)
(footprint footprints:GS3)
(libsource (lib logo) (part GS3))
(sheetpath (names /) (tstamps /))
(tstamp 52F3C91F))
(comp (ref H1)
(value 4mm)
(footprint footprints:1pin)
(libsource (lib rs485_rs232_can) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 533F364A))
(comp (ref H2)
(value 4mm)
(footprint footprints:1pin)
(libsource (lib rs485_rs232_can) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 533F6096))
(comp (ref H3)
(value 4mm)
(footprint footprints:1pin)
(libsource (lib rs485_rs232_can) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 533F609C))
(comp (ref H4)
(value 4mm)
(footprint footprints:1pin)
(libsource (lib rs485_rs232_can) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 533F60A2))
(comp (ref F1)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperTop)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib logo) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 574C9AED))
(comp (ref F4)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperBottom)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib logo) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 574CA6A3))
(comp (ref F3)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperTop)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib logo) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 574CB075))
(comp (ref F6)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperBottom)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib logo) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 574CB07C))
(comp (ref F2)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperTop)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib logo) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 574CBFC2))
(comp (ref F5)
(value FIDUCIAL)
(footprint Fiducials:Fiducial_1mm_Dia_2.54mm_Outer_CopperBottom)
(fields
(field (name Descripcion) FIDUCIAL))
(libsource (lib logo) (part FIDUCIAL))
(sheetpath (names /) (tstamps /))
(tstamp 574CBFC9))
(comp (ref C7)
(value 470pF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C471K5RACTU))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7097))
(comp (ref C8)
(value 1uF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C105K9PACTU))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F70A6))
(comp (ref C6)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) "C0603C104K5RACTU "))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7101))
(comp (ref C2)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) "C0603C104K5RACTU "))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F71A7))
(comp (ref C3)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) "C0603C104K5RACTU "))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F71AD))
(comp (ref R2)
(value "4k7 1%")
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603FR-074K7L))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7377))
(comp (ref R1)
(value 1k5)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) 311-1.5KGRCT-ND))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7386))
(comp (ref R3)
(value 50)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603FR-0749R9L))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F75AC))
(comp (ref R4)
(value 50)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603FR-0749R9L))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F75BB))
(comp (ref R5)
(value 50)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603FR-0749R9L))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7742))
(comp (ref R6)
(value 50)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603FR-0749R9L))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7748))
(comp (ref C10)
(value 22nF)
(footprint footprints:c_0603)
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F774E))
(comp (ref C11)
(value 12pF)
(footprint footprints:c_0603)
(fields
(field (name manf#) "CBR02C120F3GAC "))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7A1A))
(comp (ref C12)
(value 12pF)
(footprint footprints:c_0603)
(fields
(field (name manf#) "CBR02C120F3GAC "))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7AA0))
(comp (ref C13)
(value 12pF)
(footprint footprints:c_0603)
(fields
(field (name manf#) "CBR02C120F3GAC "))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7AAD))
(comp (ref C14)
(value 12pF)
(footprint footprints:c_0603)
(fields
(field (name manf#) "CBR02C120F3GAC "))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7ABA))
(comp (ref R17)
(value 270)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-07270RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7EB8))
(comp (ref R18)
(value 270)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-07270RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F7EC7))
(comp (ref R19)
(value "12.1k 1%")
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) "RC0603FR-0712K1L "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F809E))
(comp (ref C15)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F82E9))
(comp (ref R7)
(value 0)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-070RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F8A77))
(comp (ref R8)
(value 0)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-070RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F8A86))
(comp (ref R9)
(value 0)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-070RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F8AE4))
(comp (ref R10)
(value 22)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-0722RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F8AEA))
(comp (ref R11)
(value 22)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-0722RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F8AFC))
(comp (ref R12)
(value 22)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-0722RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F8B02))
(comp (ref R13)
(value 0)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) " RC0603JR-070RL"))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F8E9C))
(comp (ref R14)
(value 0)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-070RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F8EA2))
(comp (ref C4)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F967C))
(comp (ref U2)
(value SI502)
(footprint footprints:4SMD)
(datasheet http://www.digikey.com/product-detail/en/silicon-labs/502AAA-ADAG/502AAA-ADAG-ND/4173092)
(fields
(field (name manf#) 502AAA-ADAG)
(field (name "Reemplazo Datasheet") http://www.abracon.com/Oscillators/ASFL1.pdf)
(field (name "Reemplazo manf#") "ASFL1-50.000MHZ-L-T "))
(libsource (lib Si50x) (part Si50X))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 52BC24C2))
(comp (ref R20)
(value 33)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-0733RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 52BC2833))
(comp (ref R15)
(value 10k)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) " RC0603JR-0710KL"))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 52BC2A10))
(comp (ref R16)
(value 10k)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) " RC0603JR-0710KL"))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 52BC2A34))
(comp (ref R21)
(value 100k)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-07100KL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 52BC2C7C))
(comp (ref C5)
(value 1uF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C105K9PACTU))
(libsource (lib ciaa-pic-rescue) (part CP1-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 52C688A8))
(comp (ref C1)
(value 10uF)
(footprint footprints:c_1206_tantalio)
(fields
(field (name manf#) T491A106K006AT))
(libsource (lib ciaa-pic-rescue) (part CP1-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 52C688B7))
(comp (ref R139)
(value "4k7 1%")
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) "RC0603FR-074K7L "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538D135B))
(comp (ref C63)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538D1E3A))
(comp (ref C9)
(value 1uF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C105K9PACTU))
(libsource (lib ciaa-pic-rescue) (part CP1-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538D1E4C))
(comp (ref R95)
(value "4k7 1%")
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) "RC0603FR-074K7L "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538DFAFF))
(comp (ref R91)
(value "4k7 1%")
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) "RC0603FR-074K7L "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538DFC8D))
(comp (ref R81)
(value "4k7 1%")
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) "RC0603FR-074K7L "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538DFC93))
(comp (ref R31)
(value "4k7 1%")
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) "RC0603FR-074K7L "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538DFC99))
(comp (ref R140)
(value 33)
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) "RC0603JR-0733RL "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538DFD66))
(comp (ref R92)
(value 10k)
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) " RC0603JR-0710KL"))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538E24EF))
(comp (ref R113)
(value 33)
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) RC0603JR-0733RL))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 538E2D29))
(comp (ref U1)
(value LAN_8740)
(footprint footprints:QFN32_Opendous)
(datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/8740a.pdf)
(fields
(field (name manf#) LAN8740A-EN)
(field (name Digikey) http://ww1.microchip.com/downloads/en/DeviceDoc/8740a.pdf))
(libsource (lib lan_8740) (part LAN_8740))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 53BC60ED))
(comp (ref J5)
(value RJ45-TRANSFO)
(footprint footprints:RJ45_TRANSFO)
(datasheet http://www.digikey.com/product-search/en?mpart=7499111121A&v=732)
(fields
(field (name manf#) SI-50170-F)
(field (name Datasheet) http://belfuse.com/pdfs/SI-50170-F.pdf))
(libsource (lib ciaa-pic-cache) (part RJ45-TRANSFO))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 55866D37))
(comp (ref L1)
(value BK1608HS220-T)
(footprint footprints:SM0603)
(fields
(field (name manf#) MH1608-221Y))
(libsource (lib BLM15HG6015N1D) (part INDUCTOR))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 529F720A))
(comp (ref R25)
(value 1M)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603FR-0749R9L))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 57C62FEA))
(comp (ref C64)
(value 100nf)
(footprint footprints:c_0603)
(fields
(field (name manf#) "CBR02C120F3GAC "))
(libsource (lib ciaa-pic-rescue) (part C-RESCUE-ciaa-pic))
(sheetpath (names /Ethernet/) (tstamps /52C34F34/))
(tstamp 57C630C8))
(comp (ref U5)
(value MAX3072)
(footprint footprints:-SOIC8)
(datasheet http://www.digikey.com/product-detail/en/maxim-integrated/MAX3072EESA-T/MAX3072EESA-TCT-ND/3647905)
(fields
(field (name "MAX3072 manf#") MAX3072EESA+T)
(field (name manf#) SN65176BDR)
(field (name "Datasheet SN75176B") http://www.ti.com/lit/ds/symlink/sn65176b.pdf))
(libsource (lib rs485_rs232_can) (part MAX3072))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B349))
(comp (ref C22)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib rs485_rs232_can) (part C_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B34A))
(comp (ref R33)
(value 100K)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-07100KL))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B34C))
(comp (ref R35)
(value 220)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) "RC0603JR-07220RL "))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B34D))
(comp (ref R38)
(value 100K)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-07100KL))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B34E))
(comp (ref D8)
(value PSD12C)
(footprint footprints:DO214AA-1-2)
(datasheet https://www.arrow.com/en/products/psd12c-lft7/protek-devices)
(fields
(field (name manf#) P6SMB12CAT3G))
(libsource (lib rs485_rs232_can) (part ESD))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B34F))
(comp (ref D6)
(value PSD12C)
(footprint footprints:DO214AA-1-2)
(fields
(field (name manf#) P6SMB12CAT3G))
(libsource (lib rs485_rs232_can) (part ESD))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B350))
(comp (ref D7)
(value PSD12C)
(footprint footprints:DO214AA-1-2)
(fields
(field (name manf#) P6SMB12CAT3G))
(libsource (lib rs485_rs232_can) (part ESD))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B351))
(comp (ref C24)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib rs485_rs232_can) (part C_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B352))
(comp (ref C26)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib rs485_rs232_can) (part C_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B353))
(comp (ref C25)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib rs485_rs232_can) (part C_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B354))
(comp (ref C27)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib rs485_rs232_can) (part C_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B355))
(comp (ref C23)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib rs485_rs232_can) (part C_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B359))
(comp (ref J3)
(value DB9)
(footprint footprints:K22X-E9P-NJ)
(fields
(field (name manf#) "182-009-113R561 "))
(libsource (lib rs485_rs232_can) (part DB9))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B35E))
(comp (ref R32)
(value 390)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-07390R))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B362))
(comp (ref R39)
(value 390)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-07390R))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B363))
(comp (ref JP4)
(value JUMPER-2)
(footprint footprints:GS2)
(libsource (lib w_device) (part Jumper-2))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B365))
(comp (ref JP2)
(value JUMPER-2)
(footprint footprints:GS2)
(libsource (lib w_device) (part Jumper-2))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B366))
(comp (ref JP1)
(value JUMPER-2)
(footprint footprints:GS2)
(libsource (lib w_device) (part Jumper-2))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B367))
(comp (ref R47)
(value 4K7)
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) RC0603JR-074K7L))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B36A))
(comp (ref C29)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib rs485_rs232_can) (part C_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B36E))
(comp (ref C28)
(value 10uF/6V3)
(footprint footprints:c_1206_tantalio)
(fields
(field (name manf#) T491A106K006AT7280))
(libsource (lib w_device) (part CP_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B370))
(comp (ref U8)
(value PESD1CAN)
(footprint footprints:SOT23)
(datasheet http://www.digikey.com/product-detail/es/nxp-semiconductors/PESD1CAN,215/568-4032-1-ND/1530822)
(fields
(field (name manf#) "PESD1CAN,215 "))
(libsource (lib w_device) (part PESD1CAN))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B373))
(comp (ref J4)
(value TB_1X3)
(footprint footprints:bornier3)
(fields
(field (name manf#) OSTTC032162))
(libsource (lib w_device) (part TB_1X3))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B375))
(comp (ref JP5)
(value JUMPER-2)
(footprint footprints:GS2)
(libsource (lib w_device) (part Jumper-2))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B377))
(comp (ref R43)
(value 60)
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) "RC0603FR-0759RL "))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B378))
(comp (ref C30)
(value 100nF)
(footprint footprints:c_0603)
(fields
(field (name manf#) C0603C104K5RACTU))
(libsource (lib rs485_rs232_can) (part C_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B379))
(comp (ref R46)
(value 60)
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) "RC0603FR-0759RL "))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B37B))
(comp (ref JP6)
(value JUMPER-2)
(footprint footprints:GS2)
(libsource (lib w_device) (part Jumper-2))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B37C))
(comp (ref J2)
(value TB_1X3)
(footprint footprints:bornier3)
(fields
(field (name manf#) OSTTC032162))
(libsource (lib w_device) (part TB_1X3))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B37D))
(comp (ref R37)
(value 4K7)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-074K7L))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B37E))
(comp (ref R36)
(value 4K7)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-074K7L))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B380))
(comp (ref JP3)
(value JUMPER-2)
(footprint footprints:GS2)
(libsource (lib w_device) (part Jumper-2))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B382))
(comp (ref C21)
(value 10uF/6V3)
(footprint footprints:c_1206_tantalio)
(fields
(field (name manf#) T491A106K006AT7280))
(libsource (lib w_device) (part CP_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B383))
(comp (ref PS2)
(value USMF020)
(footprint footprints:MF-MSMF)
(fields
(field (name manf#) "MF-USMF020-2 "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B384))
(comp (ref PS1)
(value USMF020)
(footprint footprints:MF-MSMF)
(datasheet http://www.digikey.com/product-detail/es/bourns-inc/MF-USMF020-2/MF-USMF020-2CT-ND/1014928)
(fields
(field (name manf#) "MF-USMF020-2 "))
(libsource (lib ciaa-pic-rescue) (part R-RESCUE-ciaa-pic))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B385))
(comp (ref R40)
(value "100 / 1/2W")
(footprint Resistors_SMD:R_2010)
(fields
(field (name manf#) "CR2010-JW-101ELF "))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B387))
(comp (ref R41)
(value 4K7)
(footprint footprints:SM0603_Resistor)
(fields
(field (name manf#) RC0603JR-074K7L))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B38A))
(comp (ref R34)
(value 4K7)
(footprint footprints:SM0603_Resistor)
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C5B38C))
(comp (ref U6)
(value ST3232E)
(footprint footprints:TSSOP16)
(fields
(field (name manf#) "ST3232ECTR "))
(libsource (lib rs485_rs232_can) (part ST3232E))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C61C4D))
(comp (ref R44)
(value 270R)
(footprint Resistors_SMD:R_0603)
(fields
(field (name manf#) "RC0603JR-07270RL "))
(libsource (lib rs485_rs232_can) (part R_MINI))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52C82851))
(comp (ref FB14)
(value BLM18KG221SN1)
(footprint footprints:SM0603)
(fields
(field (name manf#) BLM18KG221SN1D))
(libsource (lib BLM15HG6015N1D) (part FILTER))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52DDD3FB))
(comp (ref FB13)
(value BLM18BD470SN1)
(footprint footprints:SM0603)
(fields
(field (name manf#) BLM18BD470SN1D))
(libsource (lib BLM15HG6015N1D) (part FILTER))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52DDDC1B))
(comp (ref FB12)
(value BLM18BD470SN1)
(footprint footprints:SM0603)
(fields
(field (name manf#) BLM18BD470SN1D))
(libsource (lib BLM15HG6015N1D) (part FILTER))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52DDDC21))
(comp (ref FB18)
(value BLM18BD470SN1)
(footprint footprints:SM0603)
(fields
(field (name manf#) BLM18BD470SN1D))
(libsource (lib BLM15HG6015N1D) (part FILTER))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52DDF70E))
(comp (ref FB19)
(value BLM18BD470SN1)
(footprint footprints:SM0603)
(fields
(field (name manf#) BLM18BD470SN1D))
(libsource (lib BLM15HG6015N1D) (part FILTER))
(sheetpath (names /RS485_RS232_CAN/) (tstamps /52C1F703/))
(tstamp 52DDF714))