-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlight_Computer.net
More file actions
1890 lines (1890 loc) · 78 KB
/
Copy pathFlight_Computer.net
File metadata and controls
1890 lines (1890 loc) · 78 KB
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 C:\Users\Lucas\Documents\KiCAD\MASA\Flight_Computer\Flight_Computer.sch)
(date "12/24/2019 1:34:50 PM")
(tool "Eeschema (5.1.2)-2")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title)
(company)
(rev)
(date)
(source Flight_Computer.sch)
(comment (number 1) (value ""))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref IC1)
(value PIC32MZ2048EFH144-I_PL)
(footprint QFP50P2200X2200X160-144N)
(datasheet https://componentsearchengine.com/Datasheets/1/PIC32MZ2048EFH144-I_PL.pdf)
(fields
(field (name Description) "MICROCHIP - PIC32MZ2048EFH144-I/PL - MCU, 32BIT, PIC32, 200MHZ, LQFP-144")
(field (name Height) 1.6)
(field (name Manufacturer_Name) Microchip)
(field (name Manufacturer_Part_Number) PIC32MZ2048EFH144-I/PL)
(field (name "Mouser Part Number") 579-MZ2048EFH144IPL)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=579-MZ2048EFH144IPL))
(libsource (lib SamacSys_Parts) (part PIC32MZ2048EFH144-I_PL) (description "MICROCHIP - PIC32MZ2048EFH144-I/PL - MCU, 32BIT, PIC32, 200MHZ, LQFP-144"))
(sheetpath (names /) (tstamps /))
(tstamp 5D744CC6))
(comp (ref C16)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D754444))
(comp (ref C17)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D75884D))
(comp (ref C15)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7596CA))
(comp (ref C13)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D759B8E))
(comp (ref C4)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D75A47D))
(comp (ref C3)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D75A7BD))
(comp (ref C8)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D75B05E))
(comp (ref C14)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D75B441))
(comp (ref J3)
(value "ICSP Programming")
(footprint Connector_PinHeader_2.54mm:PinHeader_1x05_P2.54mm_Vertical)
(datasheet ~)
(libsource (lib Connector_Generic) (part Conn_01x05) (description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)"))
(sheetpath (names /) (tstamps /))
(tstamp 5D7776F2))
(comp (ref C1)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D77B5FB))
(comp (ref R8)
(value 1k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D77EB5A))
(comp (ref R7)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D784209))
(comp (ref C2)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5D787903))
(comp (ref R1)
(value 100)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE455DD))
(comp (ref R2)
(value 100)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE47497))
(comp (ref C5)
(value 1n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE819E8))
(comp (ref C9)
(value 22u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE82A16))
(comp (ref D1)
(value >8V)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE8E040))
(comp (ref C11)
(value 100u)
(footprint Capacitor_SMD:CP_Elec_5x3)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DED4F3D))
(comp (ref C7)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF0E515))
(comp (ref L1)
(value 3.3u)
(footprint Inductor_SMD:L_Wuerth_MAPI-2512)
(datasheet ~)
(fields
(field (name PART#) 74438324033))
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5DF2BA0F))
(comp (ref C6)
(value 1n)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF4CF37))
(comp (ref C10)
(value 22u)
(footprint Capacitor_SMD:C_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part C) (description "Unpolarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF4CF3D))
(comp (ref D2)
(value >8V)
(footprint Diode_SMD:D_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part D_TVS) (description "Bidirectional transient-voltage-suppression diode"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF4CF47))
(comp (ref C12)
(value 100u)
(footprint Capacitor_SMD:CP_Elec_5x3)
(datasheet ~)
(libsource (lib Device) (part CP) (description "Polarized capacitor"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF4CF55))
(comp (ref L2)
(value 3.3u)
(footprint Inductor_SMD:L_Wuerth_MAPI-2512)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5DF4CF62))
(comp (ref U2)
(value STMPS2141STR)
(footprint digikey-footprints:SOT-753)
(datasheet http://www.st.com/content/ccc/resource/technical/document/datasheet/e8/d7/48/25/eb/87/45/b3/CD00167470.pdf/files/CD00167470.pdf/jcr:content/translations/en.CD00167470.pdf)
(fields
(field (name Category) "Integrated Circuits (ICs)")
(field (name DK_Datasheet_Link) http://www.st.com/content/ccc/resource/technical/document/datasheet/e8/d7/48/25/eb/87/45/b3/CD00167470.pdf/files/CD00167470.pdf/jcr:content/translations/en.CD00167470.pdf)
(field (name DK_Detail_Page) /product-detail/en/stmicroelectronics/STMPS2141STR/497-6933-1-ND/1880311)
(field (name Description) "IC PWR SWITCH 1CH 500MA SOT23-5")
(field (name Digi-Key_PN) 497-6933-1-ND)
(field (name Family) "PMIC - Power Distribution Switches, Load Drivers")
(field (name MPN) STMPS2141STR)
(field (name Manufacturer) STMicroelectronics)
(field (name Status) Active))
(libsource (lib dk_PMIC-Power-Distribution-Switches-Load-Drivers) (part STMPS2141STR) (description "IC PWR SWITCH 1CH 500MA SOT23-5"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE6DF16))
(comp (ref U1)
(value STMPS2141STR)
(footprint digikey-footprints:SOT-753)
(datasheet http://www.st.com/content/ccc/resource/technical/document/datasheet/e8/d7/48/25/eb/87/45/b3/CD00167470.pdf/files/CD00167470.pdf/jcr:content/translations/en.CD00167470.pdf)
(fields
(field (name Category) "Integrated Circuits (ICs)")
(field (name DK_Datasheet_Link) http://www.st.com/content/ccc/resource/technical/document/datasheet/e8/d7/48/25/eb/87/45/b3/CD00167470.pdf/files/CD00167470.pdf/jcr:content/translations/en.CD00167470.pdf)
(field (name DK_Detail_Page) /product-detail/en/stmicroelectronics/STMPS2141STR/497-6933-1-ND/1880311)
(field (name Description) "IC PWR SWITCH 1CH 500MA SOT23-5")
(field (name Digi-Key_PN) 497-6933-1-ND)
(field (name Family) "PMIC - Power Distribution Switches, Load Drivers")
(field (name MPN) STMPS2141STR)
(field (name Manufacturer) STMicroelectronics)
(field (name Status) Active))
(libsource (lib dk_PMIC-Power-Distribution-Switches-Load-Drivers) (part STMPS2141STR) (description "IC PWR SWITCH 1CH 500MA SOT23-5"))
(sheetpath (names /) (tstamps /))
(tstamp 5DE85DA0))
(comp (ref R5)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEBEE70))
(comp (ref R6)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEC616D))
(comp (ref R3)
(value NP)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DECE308))
(comp (ref R4)
(value NP)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DECE8BA))
(comp (ref R9)
(value 470m)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEDFB0F))
(comp (ref R10)
(value 470m)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DEEAA05))
(comp (ref C19)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF53E4F))
(comp (ref C18)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF50304))
(comp (ref U3)
(value BNO055)
(footprint digikey-footprints:LGA-28_5.2x3.8mm_BNO0055)
(datasheet https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BNO055-DS000.pdf)
(fields
(field (name Category) "Sensors, Transducers")
(field (name DK_Datasheet_Link) https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BNO055-DS000.pdf)
(field (name DK_Detail_Page) /product-detail/en/bosch-sensortec/BNO055/828-1058-1-ND/6136309)
(field (name Description) "IMU ACCEL/GYRO/MAG I2C 28LGA")
(field (name Digi-Key_PN) 828-1058-1-ND)
(field (name Family) "Motion Sensors - IMUs (Inertial Measurement Units)")
(field (name MPN) BNO055)
(field (name Manufacturer) "Bosch Sensortec")
(field (name Status) Active))
(libsource (lib dk_Motion-Sensors-IMUs-Inertial-Measurement-Units) (part BNO055) (description "IMU ACCEL/GYRO/MAG I2C 28LGA"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF38D6C))
(comp (ref C20)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF8F104))
(comp (ref R11)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF77989))
(comp (ref R12)
(value 10k)
(footprint Resistor_SMD:R_0805_2012Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5DF9A744))
(comp (ref J2)
(value UJ2-MBH-1-SMT-TR)
(footprint digikey-footprints:USB_Mini_B_Female_UJ2-MBH-1-SMT-TR)
(datasheet https://www.cui.com/product/resource/digikeypdf/uj2-mbh-smt.pdf)
(fields
(field (name Category) "Connectors, Interconnects")
(field (name DK_Datasheet_Link) https://www.cui.com/product/resource/digikeypdf/uj2-mbh-smt.pdf)
(field (name DK_Detail_Page) /product-detail/en/cui-inc/UJ2-MBH-1-SMT-TR/102-4003-1-ND/6187925)
(field (name Description) "CONN RCPT USB2.0 MINI B SMD R/A")
(field (name Digi-Key_PN) 102-4003-1-ND)
(field (name Family) "USB, DVI, HDMI Connectors")
(field (name MPN) UJ2-MBH-1-SMT-TR)
(field (name Manufacturer) "CUI Inc.")
(field (name Status) Active))
(libsource (lib dk_USB-DVI-HDMI-Connectors) (part UJ2-MBH-1-SMT-TR) (description "CONN RCPT USB2.0 MINI B SMD R/A"))
(sheetpath (names /) (tstamps /))
(tstamp 5DFF5FDF))
(comp (ref J1)
(value SC_19-20)
(footprint MASA_Library:Stack_Connector_2019_2020)
(fields
(field (name Description) "Conn Shrouded Header HDR 40 POS 1.27mm Solder ST SMD T/R")
(field (name Height) 11.35)
(field (name Manufacturer_Name) SAMTEC)
(field (name Manufacturer_Part_Number) TFC-120-32-F-D-A-K-TR))
(libsource (lib MASA_Library) (part SC_19-20) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5DFF80C2))
(comp (ref U4)
(value SN65HVD1050D)
(footprint Package_SO:SOIC-8_3.9x4.9mm_P1.27mm)
(datasheet http://www.ti.com/lit/ds/symlink/sn65hvd1050.pdf)
(libsource (lib Interface_CAN_LIN) (part SN65HVD1050D) (description "CAN Bus Transceiver, EMC optimised, 5.0V, 1Mbps, SOIC-8"))
(sheetpath (names /) (tstamps /))
(tstamp 5E01020B))
(comp (ref R13)
(value 0)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0116D3))
(comp (ref R14)
(value 0)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E013802))
(comp (ref R15)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E047CED))
(comp (ref C21)
(value 100p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E064C42))
(comp (ref R16)
(value 0)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C5710))
(comp (ref R18)
(value 60)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C5DA2))
(comp (ref C26)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C62B9))
(comp (ref D3)
(value D_TVS_x2_AAC)
(footprint Package_TO_SOT_SMD:SOT-23)
(datasheet ~)
(libsource (lib Device) (part D_TVS_x2_AAC) (description "Bidirectional dual transient-voltage-suppression diode, center on pin 3"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C77A9))
(comp (ref C25)
(value 100p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0ECF3D))
(comp (ref C24)
(value 100p)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0EDDE9))
(comp (ref R17)
(value 60)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0C528F))
(comp (ref J4)
(value 47219-2001)
(footprint 472192001)
(datasheet https://componentsearchengine.com/Datasheets/1/47219-2001.pdf)
(fields
(field (name Description) "Molex 47219 Series 8 Way Horizontal Hinged Micro SD Memory Card Connector with Solder Termination")
(field (name Manufacturer_Name) Molex)
(field (name Manufacturer_Part_Number) 47219-2001)
(field (name "Mouser Part Number") 538-47219-2001)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=538-47219-2001))
(libsource (lib MASA_Library) (part 47219-2001) (description "Molex 47219 Series 8 Way Horizontal Hinged Micro SD Memory Card Connector with Solder Termination"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0516E9))
(comp (ref C41)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E075DDA))
(comp (ref C42)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E076651))
(comp (ref U5)
(value TXB0104PWR)
(footprint digikey-footprints:TSSOP-14_W4.4mm)
(datasheet http://www.ti.com/general/docs/suppproductinfo.tsp?distId=10&gotoUrl=http%3A%2F%2Fwww.ti.com%2Flit%2Fgpn%2Ftxb0104)
(fields
(field (name Category) "Integrated Circuits (ICs)")
(field (name DK_Datasheet_Link) http://www.ti.com/general/docs/suppproductinfo.tsp?distId=10&gotoUrl=http%3A%2F%2Fwww.ti.com%2Flit%2Fgpn%2Ftxb0104)
(field (name DK_Detail_Page) /product-detail/en/texas-instruments/TXB0104PWR/296-21929-1-ND/1629282)
(field (name Description) "IC TRNSLTR BIDIRECTIONAL 14TSSOP")
(field (name Digi-Key_PN) 296-21929-1-ND)
(field (name Family) "Logic - Translators, Level Shifters")
(field (name MPN) TXB0104PWR)
(field (name Manufacturer) "Texas Instruments")
(field (name Status) Active))
(libsource (lib dk_Logic-Translators-Level-Shifters) (part TXB0104PWR) (description "IC TRNSLTR BIDIRECTIONAL 14TSSOP"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0BD691))
(comp (ref C43)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0E11AC))
(comp (ref C40)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0E2112))
(comp (ref R21)
(value 10k)
(footprint Resistor_SMD:R_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0F4390))
(comp (ref C37)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E11020F))
(comp (ref TP9)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E164086))
(comp (ref TP10)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E170F0F))
(comp (ref TP7)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E17219C))
(comp (ref TP8)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1736F9))
(comp (ref TP5)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E17652F))
(comp (ref TP6)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E177A41))
(comp (ref TP4)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E177D45))
(comp (ref TP3)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1781C7))
(comp (ref TP2)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E18B052))
(comp (ref TP1)
(value T)
(footprint TestPoint:TestPoint_Pad_1.0x1.0mm)
(datasheet ~)
(libsource (lib Connector) (part TestPoint) (description "test point"))
(sheetpath (names /) (tstamps /))
(tstamp 5E18C0A5))
(comp (ref TMP2)
(value LM50CIM3X)
(footprint Package_TO_SOT_SMD:SOT-23)
(libsource (lib MASA_Library) (part LM50CIM3X) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E19AB2D))
(comp (ref C39)
(value 100n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1B89A4))
(comp (ref C38)
(value 1n)
(footprint Capacitor_SMD:C_0603_1608Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1B89AA))
(comp (ref C28)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1CA9B0))
(comp (ref C27)
(value 1n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E1CA9B6))
(comp (ref TMP1)
(value LM50CIM3X)
(footprint Package_TO_SOT_SMD:SOT-23)
(libsource (lib MASA_Library) (part LM50CIM3X) (description ""))
(sheetpath (names /) (tstamps /))
(tstamp 5E198DF2))
(comp (ref C22)
(value 1n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0A3AD9))
(comp (ref C23)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E0A3AD3))
(comp (ref C30)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E20C2B8))
(comp (ref C32)
(value 1n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E24147D))
(comp (ref L4)
(value 2.2u)
(footprint Inductor_SMD:L_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5E241952))
(comp (ref C36)
(value 2.2u)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E24204A))
(comp (ref R20)
(value 3.3)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2424DE))
(comp (ref C34)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E2DBB27))
(comp (ref C29)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A6784))
(comp (ref C31)
(value 1n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A6792))
(comp (ref L3)
(value 2.2u)
(footprint Inductor_SMD:L_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part L) (description Inductor))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A6798))
(comp (ref C35)
(value 2.2u)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A679E))
(comp (ref R19)
(value 3.3)
(footprint Resistor_SMD:R_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part R_Small_US) (description "Resistor, small US symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A67A4))
(comp (ref C33)
(value 100n)
(footprint Capacitor_SMD:C_0402_1005Metric)
(datasheet ~)
(libsource (lib Device) (part C_Small) (description "Unpolarized capacitor, small symbol"))
(sheetpath (names /) (tstamps /))
(tstamp 5E3A67B8)))
(libparts
(libpart (lib Connector) (part TestPoint)
(description "test point")
(docs ~)
(footprints
(fp Pin*)
(fp Test*))
(fields
(field (name Reference) TP)
(field (name Value) TestPoint))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib Connector_Generic) (part Conn_01x05)
(description "Generic connector, single row, 01x05, script generated (kicad-library-utils/schlib/autogen/connector/)")
(docs ~)
(footprints
(fp Connector*:*_1x??_*))
(fields
(field (name Reference) J)
(field (name Value) Conn_01x05))
(pins
(pin (num 1) (name Pin_1) (type passive))
(pin (num 2) (name Pin_2) (type passive))
(pin (num 3) (name Pin_3) (type passive))
(pin (num 4) (name Pin_4) (type passive))
(pin (num 5) (name Pin_5) (type passive))))
(libpart (lib Device) (part C)
(description "Unpolarized capacitor")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part CP)
(description "Polarized capacitor")
(docs ~)
(footprints
(fp CP_*))
(fields
(field (name Reference) C)
(field (name Value) CP))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part C_Small)
(description "Unpolarized capacitor, small symbol")
(docs ~)
(footprints
(fp C_*))
(fields
(field (name Reference) C)
(field (name Value) C_Small))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Device) (part D_TVS)
(description "Bidirectional transient-voltage-suppression diode")
(docs ~)
(footprints
(fp TO-???*)
(fp *_Diode_*)
(fp *SingleDiode*)
(fp D_*))
(fields
(field (name Reference) D)
(field (name Value) D_TVS))
(pins
(pin (num 1) (name A1) (type passive))
(pin (num 2) (name A2) (type passive))))
(libpart (lib Device) (part D_TVS_x2_AAC)
(description "Bidirectional dual transient-voltage-suppression diode, center on pin 3")
(docs ~)
(fields
(field (name Reference) D)
(field (name Value) D_TVS_x2_AAC))
(pins
(pin (num 1) (name A1) (type passive))
(pin (num 2) (name A2) (type passive))
(pin (num 3) (name common) (type input))))
(libpart (lib Device) (part L)
(description Inductor)
(docs ~)
(footprints
(fp Choke_*)
(fp *Coil*)
(fp Inductor_*)
(fp L_*))
(fields
(field (name Reference) L)
(field (name Value) L))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib Device) (part R_Small_US)
(description "Resistor, small US symbol")
(docs ~)
(footprints
(fp R_*))
(fields
(field (name Reference) R)
(field (name Value) R_Small_US))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib Interface_CAN_LIN) (part SN65HVD1050D)
(description "CAN Bus Transceiver, EMC optimised, 5.0V, 1Mbps, SOIC-8")
(docs http://www.ti.com/lit/ds/symlink/sn65hvd1050.pdf)
(footprints
(fp SOIC*3.9x4.9mm*P1.27mm*))
(fields
(field (name Reference) U)
(field (name Value) SN65HVD1050D)
(field (name Footprint) Package_SO:SOIC-8_3.9x4.9mm_P1.27mm))
(pins
(pin (num 1) (name TXD) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VCC) (type power_in))
(pin (num 4) (name RXD) (type output))
(pin (num 5) (name VREF) (type passive))
(pin (num 6) (name CANL) (type BiDi))
(pin (num 7) (name CANH) (type BiDi))
(pin (num 8) (name S) (type input))))
(libpart (lib MASA_Library) (part 47219-2001)
(description "Molex 47219 Series 8 Way Horizontal Hinged Micro SD Memory Card Connector with Solder Termination")
(docs https://componentsearchengine.com/Datasheets/1/47219-2001.pdf)
(fields
(field (name Reference) J)
(field (name Value) 47219-2001)
(field (name Footprint) 472192001)
(field (name Datasheet) https://componentsearchengine.com/Datasheets/1/47219-2001.pdf)
(field (name Description) "Molex 47219 Series 8 Way Horizontal Hinged Micro SD Memory Card Connector with Solder Termination")
(field (name "Mouser Part Number") 538-47219-2001)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=538-47219-2001)
(field (name Manufacturer_Name) Molex)
(field (name Manufacturer_Part_Number) 47219-2001))
(pins
(pin (num 1) (name DAT2) (type unspc))
(pin (num 2) (name CD/DAT3) (type unspc))
(pin (num 3) (name CMD) (type unspc))
(pin (num 4) (name VDD) (type unspc))
(pin (num 5) (name CLK) (type unspc))
(pin (num 6) (name VSS) (type unspc))
(pin (num 7) (name DAT0) (type unspc))
(pin (num 8) (name DAT1) (type unspc))
(pin (num 9) (name GND_1) (type unspc))
(pin (num 10) (name GND_2) (type unspc))
(pin (num 11) (name GND_3) (type unspc))
(pin (num 12) (name GND_4) (type unspc))))
(libpart (lib MASA_Library) (part LM50CIM3X)
(fields
(field (name Reference) TMP)
(field (name Value) LM50CIM3X)
(field (name Footprint) Package_TO_SOT_SMD:SOT-23))
(pins
(pin (num 1) (name Vs) (type input))
(pin (num 2) (name Vout) (type input))
(pin (num 3) (name GND) (type input))))
(libpart (lib MASA_Library) (part SC_19-20)
(fields
(field (name Reference) J)
(field (name Value) SC_19-20)
(field (name Footprint) MASA_Library:Stack_Connector_2019_2020)
(field (name Description) "Conn Shrouded Header HDR 40 POS 1.27mm Solder ST SMD T/R")
(field (name Height) 11.35)
(field (name Manufacturer_Name) SAMTEC)
(field (name Manufacturer_Part_Number) TFC-120-32-F-D-A-K-TR))
(pins
(pin (num 1) (name GND) (type unspc))
(pin (num 2) (name 3V3) (type unspc))
(pin (num 3) (name 3V3) (type unspc))
(pin (num 4) (name GND) (type unspc))
(pin (num 5) (name GND) (type unspc))
(pin (num 6) (name 3V3) (type unspc))
(pin (num 7) (name 3V3) (type unspc))
(pin (num 8) (name SENSE) (type unspc))
(pin (num 9) (name 9) (type unspc))
(pin (num 10) (name 10) (type unspc))
(pin (num 11) (name 11) (type unspc))
(pin (num 12) (name 12) (type unspc))
(pin (num 13) (name 13) (type unspc))
(pin (num 14) (name 14) (type unspc))
(pin (num 15) (name 15) (type unspc))
(pin (num 16) (name 16) (type unspc))
(pin (num 17) (name 17) (type unspc))
(pin (num 18) (name 18) (type unspc))
(pin (num 19) (name GND) (type unspc))
(pin (num 20) (name GND) (type unspc))
(pin (num 21) (name CAN_H) (type unspc))
(pin (num 22) (name 22) (type unspc))
(pin (num 23) (name CAN_L) (type unspc))
(pin (num 24) (name 24) (type unspc))
(pin (num 25) (name UART1_TX) (type unspc))
(pin (num 26) (name 26) (type unspc))
(pin (num 27) (name UART1_RX) (type unspc))
(pin (num 28) (name 28) (type unspc))
(pin (num 29) (name USB_TX) (type unspc))
(pin (num 30) (name 30) (type unspc))
(pin (num 31) (name USB_RX) (type unspc))
(pin (num 32) (name 32) (type unspc))
(pin (num 33) (name 33) (type unspc))
(pin (num 34) (name 5V0) (type unspc))
(pin (num 35) (name 5V0) (type unspc))
(pin (num 36) (name GND) (type unspc))
(pin (num 37) (name GND) (type unspc))
(pin (num 38) (name 5V0) (type unspc))
(pin (num 39) (name 5V0) (type unspc))
(pin (num 40) (name GND) (type unspc))))
(libpart (lib SamacSys_Parts) (part PIC32MZ2048EFH144-I_PL)
(description "MICROCHIP - PIC32MZ2048EFH144-I/PL - MCU, 32BIT, PIC32, 200MHZ, LQFP-144")
(docs https://componentsearchengine.com/Datasheets/1/PIC32MZ2048EFH144-I_PL.pdf)
(fields
(field (name Reference) IC)
(field (name Value) PIC32MZ2048EFH144-I_PL)
(field (name Footprint) QFP50P2200X2200X160-144N)
(field (name Datasheet) https://componentsearchengine.com/Datasheets/1/PIC32MZ2048EFH144-I_PL.pdf)
(field (name Description) "MICROCHIP - PIC32MZ2048EFH144-I/PL - MCU, 32BIT, PIC32, 200MHZ, LQFP-144")
(field (name Height) 1.6)
(field (name "Mouser Part Number") 579-MZ2048EFH144IPL)
(field (name "Mouser Price/Stock") https://www.mouser.com/Search/Refine.aspx?Keyword=579-MZ2048EFH144IPL)
(field (name Manufacturer_Name) Microchip)
(field (name Manufacturer_Part_Number) PIC32MZ2048EFH144-I/PL))
(pins
(pin (num 1) (name AN23/RG15) (type BiDi))
(pin (num 2) (name EBIA5/AN34/PMA5/RA5) (type BiDi))
(pin (num 3) (name EBID5/AN17/RPE5/PMD5/RE5) (type BiDi))
(pin (num 4) (name EBID6/AN16/PMD6/RE6) (type BiDi))
(pin (num 5) (name EBID7/AN15/PMD7/RE7) (type BiDi))
(pin (num 6) (name EBIA6/AN22/RPC1/PMA6/RC1) (type BiDi))
(pin (num 7) (name AN35/ETXD0/RJ8) (type BiDi))
(pin (num 8) (name AN36/ETXD1/RJ9) (type BiDi))
(pin (num 9) (name ~EBIBS0~/RJ12) (type BiDi))
(pin (num 10) (name ~EBIBS1~/RJ10) (type BiDi))
(pin (num 11) (name EBIA12/AN21/RPC2/PMA12/RC2) (type BiDi))
(pin (num 12) (name ~EBIWE~/AN20/RPC3/PMWR/RC3) (type BiDi))
(pin (num 13) (name ~EBIOE~/AN19/RPC4/PMRD/RC4) (type BiDi))
(pin (num 14) (name AN14/C1IND/RPG6/SCK2/RG6) (type BiDi))
(pin (num 15) (name AN13/C1INC/RPG7/SDA4/RG7) (type BiDi))
(pin (num 16) (name AN12/C2IND/RPG8/SCL4/RG8) (type BiDi))
(pin (num 17) (name VSS_1) (type BiDi))
(pin (num 18) (name VDD_1) (type BiDi))
(pin (num 19) (name EBIA16/RK0) (type BiDi))
(pin (num 20) (name ~MCLR) (type BiDi))
(pin (num 21) (name EBIA2/AN11/C2INC/RPG9/PMA2/RG9) (type BiDi))
(pin (num 22) (name TMS/AN24/RA0) (type BiDi))
(pin (num 23) (name AN25/RPE8/RE8) (type BiDi))
(pin (num 24) (name AN26/RPE9/RE9) (type BiDi))
(pin (num 25) (name AN45/C1INA/RPB5/RB5) (type BiDi))
(pin (num 26) (name AN4/C1INB/RB4) (type BiDi))
(pin (num 27) (name AN37/ERXCLK/EREFCLK/RJ11) (type BiDi))
(pin (num 28) (name EBIA13/PMA13/RJ13) (type BiDi))
(pin (num 29) (name EBIA11/PMA11/RJ14) (type BiDi))
(pin (num 30) (name EBIA0/PMA0/RJ15) (type BiDi))
(pin (num 31) (name AN3/C2INA/RPB3/RB3) (type BiDi))
(pin (num 32) (name VSS_2) (type BiDi))
(pin (num 33) (name VDD_2) (type BiDi))
(pin (num 34) (name AN2/C2INB/RPB2/RB2) (type BiDi))
(pin (num 35) (name PGEC1/AN1/RPB1/RB1) (type BiDi))
(pin (num 36) (name PGED1/AN0/RPB0/RB0) (type BiDi))
(pin (num 37) (name PGEC2/AN46/RPB6/RB6) (type BiDi))
(pin (num 38) (name PGED2/AN47/RPB7/RB7) (type BiDi))
(pin (num 39) (name VREF-/CVREF-/AN27/RA9) (type BiDi))