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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
|
(export (version D)
(design
(source F:/kicad-launchpad/testing/demos/kit-dev-coldfire-xilinx_5213/kit-dev-coldfire-xilinx_5213.sch)
(date "27/08/2014 18:26:26")
(tool "Eeschema (2014-08-25 BZR 5096)-product"))
(components
(comp (ref U1)
(value MCF5213-LQFP100)
(footprint lib_smd:VQFP100)
(libsource (lib motorola) (part MCF5213-LQFP100))
(sheetpath (names /) (tstamps /))
(tstamp 46161C39))
(comp (ref C18)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46238286))
(comp (ref GND1)
(value CONN_1)
(footprint connect:PINTST)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 465FE6C5))
(comp (ref U2)
(value 74AHC1G14)
(footprint lib_smd:SOT353)
(libsource (lib 74xx) (part 74AHC1G14))
(sheetpath (names /) (tstamps /))
(tstamp 46554FB5))
(comp (ref CT1)
(value JUMPER)
(footprint pin_array:PIN_ARRAY_2X1)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 46545507))
(comp (ref RST_SW1)
(value SW_PUSH)
(footprint discret:SW_PUSH_SMALL)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 465451D4))
(comp (ref Y1)
(value 8MHz)
(footprint discret:HC-18UH)
(libsource (lib device) (part CRYSTAL))
(sheetpath (names /) (tstamps /))
(tstamp 462389C7))
(comp (ref C2)
(value 10pF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 462389C0))
(comp (ref C1)
(value 10pF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 462389BC))
(comp (ref R1)
(value 1M)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 462389B6))
(comp (ref ALLPST1)
(value CONN_1)
(footprint connect:PINTST)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 46238965))
(comp (ref RED1)
(value LED_RESET1)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 46238597))
(comp (ref R22)
(value 270)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 4623857F))
(comp (ref R21)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 46238545))
(comp (ref Q1)
(value 3906)
(footprint lib_smd:SOT23EBC)
(libsource (lib device) (part PNP))
(sheetpath (names /) (tstamps /))
(tstamp 46238519))
(comp (ref R15)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 4623847B))
(comp (ref D3)
(value BAT54)
(footprint lib_smd:ST23AK#1)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 4623846D))
(comp (ref C3)
(value 1nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46238468))
(comp (ref LV1)
(value DS1818)
(footprint discret:TO92-INVERT)
(libsource (lib special) (part MC34064P))
(sheetpath (names /) (tstamps /))
(tstamp 462383E5))
(comp (ref C16)
(value 10uF)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 462382CE))
(comp (ref FB1)
(value BEAD)
(footprint lib_smd:SM1206)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 462380B8))
(comp (ref L1)
(value 10uH)
(footprint lib_smd:SM1206)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 46238092))
(comp (ref VDDA1)
(value JUMPER)
(footprint pin_array:PIN_ARRAY_2X1)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 46238079))
(comp (ref D1)
(value BAT54)
(footprint lib_smd:ST23AK#1)
(libsource (lib device) (part DIODE))
(sheetpath (names /) (tstamps /))
(tstamp 46237F86))
(comp (ref ABRT_SW1)
(value SW_PUSH)
(footprint discret:SW_PUSH_SMALL)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /) (tstamps /))
(tstamp 46237F50))
(comp (ref LEDABRT1)
(value RED)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 46237E52))
(comp (ref R14)
(value 270)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 46237E3D))
(comp (ref C15)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46237E36))
(comp (ref R12)
(value 20K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 46237E2F))
(comp (ref R7)
(value 1K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 46237E28))
(comp (ref C14)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46237DF9))
(comp (ref R45)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE50C))
(comp (ref C20)
(value 1nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 461BE364))
(comp (ref C21)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 461BE35C))
(comp (ref L2)
(value 10uH)
(footprint lib_smd:SM1206)
(libsource (lib device) (part INDUCTOR))
(sheetpath (names /) (tstamps /))
(tstamp 461BE327))
(comp (ref R9)
(value 0)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE230))
(comp (ref R13)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE054))
(comp (ref R11)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE051))
(comp (ref R10)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE04B))
(comp (ref R8)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE047))
(comp (ref R6)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE046))
(comp (ref R5)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE041))
(comp (ref R4)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BE039))
(comp (ref TA-1)
(value CONN_1)
(footprint connect:PINTST)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 461BBA34))
(comp (ref R26)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BB8C0))
(comp (ref CLKOUT1)
(value CONN_1)
(footprint connect:PINTST)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 461BB894))
(comp (ref R20)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BB799))
(comp (ref R19)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BB798))
(comp (ref R18)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BB795))
(comp (ref R17)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BB790))
(comp (ref R46)
(value 22)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BB742))
(comp (ref R2)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BB661))
(comp (ref R25)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BB65F))
(comp (ref CLK1)
(value JUMPER)
(footprint pin_array:PIN_ARRAY_2X1)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 461BB648))
(comp (ref CLK0)
(value JUMPER)
(footprint pin_array:PIN_ARRAY_2X1)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 461BB62E))
(comp (ref C6)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 461BB5E5))
(comp (ref R16)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 461BAF5C))
(comp (ref BDM_EN1)
(value JUMPER)
(footprint pin_array:PIN_ARRAY_2X1)
(libsource (lib device) (part JUMPER))
(sheetpath (names /) (tstamps /))
(tstamp 461BAF4F))
(comp (ref BDM_PORT1)
(value CONN_13X2)
(footprint pin_array:pin_array_13x2)
(libsource (lib conn) (part CONN_13X2))
(sheetpath (names /) (tstamps /))
(tstamp 461BAEE7))
(comp (ref C17)
(value 100uF)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part CP))
(sheetpath (names /) (tstamps /))
(tstamp 46161D3C))
(comp (ref C12)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46161CDA))
(comp (ref C11)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46161CD9))
(comp (ref C10)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46161CD8))
(comp (ref C9)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46161CD7))
(comp (ref C8)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46161CD4))
(comp (ref C7)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46161CD3))
(comp (ref C5)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46161CB8))
(comp (ref C4)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 46161CB5))
(comp (ref VR1)
(value LT1129_QPACK)
(footprint lib_smd:DPAK5)
(libsource (lib regul) (part LT1129_QPACK))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46603376))
(comp (ref C26)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46546CA6))
(comp (ref RCAN1)
(value R)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4654018B))
(comp (ref RCAN2)
(value R)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46540184))
(comp (ref R38)
(value 62)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46540164))
(comp (ref CAN_TERM1)
(value JUMPER)
(footprint pin_array:PIN_ARRAY_2X1)
(libsource (lib device) (part JUMPER))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46540159))
(comp (ref RS1)
(value CONN_1)
(footprint connect:PINTST)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4654007F))
(comp (ref R36)
(value 1K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46540063))
(comp (ref VREF1)
(value CONN_1)
(footprint connect:PINTST)
(libsource (lib conn) (part CONN_1))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4654003D))
(comp (ref C34)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4653FFFE))
(comp (ref U7)
(value PCA82C251)
(footprint lib_smd:SO8E)
(libsource (lib kit-dev-coldfire-xilinx_5213-cache) (part PCA82C251))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4653FF97))
(comp (ref TB1)
(value CONN_2)
(footprint connect:bornier2)
(libsource (lib conn) (part CONN_2))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46530806))
(comp (ref J1)
(value JACK_2P)
(footprint connect:JACK_ALIM)
(libsource (lib device) (part JACK_2P))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 465307C6))
(comp (ref SW_ONOFF1)
(value SWITCH_INV)
(footprint discret:SW_SPDT)
(libsource (lib device) (part SWITCH_INV))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46530763))
(comp (ref F1)
(value FUSE)
(footprint lib_smd:FSUPCMS)
(libsource (lib device) (part FUSE))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46530747))
(comp (ref C41)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 465306F6))
(comp (ref D7)
(value 1N4004)
(footprint discret:D5)
(libsource (lib device) (part DIODE))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 465306C8))
(comp (ref C38)
(value 10uF)
(footprint discret:C2V8)
(libsource (lib device) (part CP))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 465306B1))
(comp (ref LED5)
(value LED)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46530639))
(comp (ref R53)
(value 270)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 46530638))
(comp (ref C40)
(value 220uF)
(footprint discret:C2V8)
(libsource (lib device) (part CP))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 465305FE))
(comp (ref SW2)
(value SW_PUSH)
(footprint discret:SW_PUSH_SMALL)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652DDE7))
(comp (ref SW1)
(value SW_PUSH)
(footprint discret:SW_PUSH_SMALL)
(libsource (lib device) (part SW_PUSH))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652DDDF))
(comp (ref CAN_EN1)
(value CONN_2X2)
(footprint pin_array:PIN_ARRAY_2X2)
(libsource (lib conn) (part CONN_2X2))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BFF1))
(comp (ref R47)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BF65))
(comp (ref R48)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BF62))
(comp (ref R49)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BF5C))
(comp (ref R50)
(value 4,7K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BF48))
(comp (ref PULUPEN1)
(value CONN_4X2)
(footprint pin_array:pin_array_4x2)
(libsource (lib conn) (part CONN_4X2))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BF26))
(comp (ref COM_SEL1)
(value CONN_3)
(footprint pin_array:PIN_ARRAY_3X1)
(libsource (lib conn) (part CONN_3))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BADD))
(comp (ref COM_SEL2)
(value CONN_3)
(footprint pin_array:PIN_ARRAY_3X1)
(libsource (lib conn) (part CONN_3))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BAD4))
(comp (ref COM_SEL3)
(value CONN_3)
(footprint pin_array:PIN_ARRAY_3X1)
(libsource (lib conn) (part CONN_3))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652BA65))
(comp (ref R30)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B9D5))
(comp (ref R35)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B9CC))
(comp (ref R23)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B5F4))
(comp (ref C45)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4DC))
(comp (ref C46)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4D9))
(comp (ref C36)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4D8))
(comp (ref C44)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4D7))
(comp (ref C35)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4D6))
(comp (ref UART_EN2)
(value CONN_4X2)
(footprint pin_array:pin_array_4x2)
(libsource (lib conn) (part CONN_4X2))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4D5))
(comp (ref UARTCAN2)
(value DB9)
(footprint connect:DB9FC)
(libsource (lib conn) (part DB9))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4D4))
(comp (ref U8)
(value MAX202)
(footprint lib_smd:SO16E)
(libsource (lib special) (part MAX202))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4D3))
(comp (ref C33)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4CA))
(comp (ref C28)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4C7))
(comp (ref C32)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4C6))
(comp (ref C31)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4C5))
(comp (ref C30)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4C4))
(comp (ref UART_EN1)
(value CONN_4X2)
(footprint pin_array:pin_array_4x2)
(libsource (lib conn) (part CONN_4X2))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4C3))
(comp (ref UARTCAN1)
(value DB9)
(footprint connect:DB9FC)
(libsource (lib conn) (part DB9))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4C2))
(comp (ref U5)
(value MAX202)
(footprint lib_smd:SO16E)
(libsource (lib special) (part MAX202))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B4C1))
(comp (ref C27)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B486))
(comp (ref C22)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B365))
(comp (ref C25)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B35B))
(comp (ref C24)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B354))
(comp (ref C23)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B33B))
(comp (ref UART_EN0)
(value CONN_4X2)
(footprint pin_array:pin_array_4x2)
(libsource (lib conn) (part CONN_4X2))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B289))
(comp (ref UARTCAN0)
(value DB9)
(footprint connect:DB9FC)
(libsource (lib conn) (part DB9))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B26D))
(comp (ref U3)
(value MAX202)
(footprint lib_smd:SO16E)
(libsource (lib special) (part MAX202))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B22B))
(comp (ref R34)
(value 10K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B111))
(comp (ref LED_EN1)
(value JUMPER)
(footprint pin_array:PIN_ARRAY_2X1)
(libsource (lib device) (part JUMPER))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B108))
(comp (ref LED4)
(value LED)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B0BC))
(comp (ref LED3)
(value LED)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B0BB))
(comp (ref LED2)
(value LED)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B0B7))
(comp (ref LED1)
(value LED)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B0AE))
(comp (ref R33)
(value 270)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B06A))
(comp (ref R32)
(value 270)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B069))
(comp (ref R31)
(value 270)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B067))
(comp (ref R28)
(value 270)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B061))
(comp (ref U4)
(value 74HC125)
(footprint lib_smd:SO14E)
(libsource (lib 74xx) (part 74LS125))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652B03E))
(comp (ref C43)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652A9D3))
(comp (ref VX_EN1)
(value JUMPER)
(footprint pin_array:PIN_ARRAY_2X1)
(libsource (lib device) (part JUMPER))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652A9C4))
(comp (ref MCU_PORT1)
(value CONN_30X2)
(footprint pin_array:PIN_ARRAY_30X2)
(libsource (lib conn) (part CONN_30X2))
(sheetpath (names /inout_user/) (tstamps /47D80202/))
(tstamp 4652A4FB))
(comp (ref R64)
(value 3,3)
(footprint discret:R4)
(libsource (lib device) (part R))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 4791D59D))
(comp (ref P3)
(value CONN_2X2)
(footprint pin_array:PIN_ARRAY_2X2)
(libsource (lib conn) (part CONN_2X2))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76EB2))
(comp (ref U9)
(value XCR3256-TQ144)
(footprint lib_smd:TQFP144)
(libsource (lib xilinx) (part XCR3256-TQ144))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 470F38BE))
(comp (ref P4)
(value CONN_20X2)
(footprint pin_array:PIN_ARRAY_20X2)
(libsource (lib conn) (part CONN_20X2))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46ADE55A))
(comp (ref R57)
(value 4K7)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BCA))
(comp (ref D8)
(value LED)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BC4))
(comp (ref R62)
(value 1K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BC3))
(comp (ref C61)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BBC))
(comp (ref C60)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BBB))
(comp (ref C59)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BBA))
(comp (ref C54)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BB5))
(comp (ref C53)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BB4))
(comp (ref C52)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BB3))
(comp (ref C51)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BB2))
(comp (ref C58)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BB1))
(comp (ref C57)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BB0))
(comp (ref C56)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BAF))
(comp (ref C55)
(value 100nF)
(footprint lib_smd:SM0805)
(libsource (lib device) (part C))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BAE))
(comp (ref D9)
(value LED)
(footprint lib_smd:SM1206POL)
(libsource (lib device) (part LED))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BA8))
(comp (ref R63)
(value 1K)
(footprint lib_smd:SM0805)
(libsource (lib device) (part R))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BA7))
(comp (ref P1)
(value CONN_6)
(footprint pin_array:PIN_ARRAY-6X1)
(libsource (lib conn) (part CONN_6))
(sheetpath (names /xilinx/) (tstamps /47D80204/))
(tstamp 46A76BA6)))
(libparts
(libpart (lib device) (part C)
(description "Condensateur non polarise")
(footprints
(fp SM*)
(fp C?)
(fp C1-1))
(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)
(aliases
(alias CAPAPOL))
(description "Condensateur polarise")
(footprints
(fp CP*)
(fp SM*))
(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 CRYSTAL)
(fields
(field (name Reference) X)
(field (name Value) CRYSTAL))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part DIODE)
(description "Diode simple")
(footprints
(fp D?)
(fp S*))
(fields
(field (name Reference) D)
(field (name Value) DIODE))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part FUSE)
(fields
(field (name Reference) F)
(field (name Value) FUSE))
(pins
(pin (num 1) (name ~) (type input))
(pin (num 2) (name ~) (type input))))
(libpart (lib device) (part INDUCTOR)
(fields
(field (name Reference) L)
(field (name Value) INDUCTOR))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part JACK_2P)
(fields
(field (name Reference) J)
(field (name Value) JACK_2P))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))
(pin (num 3) (name ~) (type passive))))
(libpart (lib device) (part JUMPER)
(fields
(field (name Reference) JP)
(field (name Value) JUMPER))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part LED)
(footprints
(fp LED-3MM)
(fp LED-5MM)
(fp LED-10MM)
(fp LED-0603)
(fp LED-0805)
(fp LED-1206)
(fp LEDV))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib device) (part PNP)
(docs transistors/bipolar/*.*)
(fields
(field (name Reference) Q)
(field (name Value) PNP))
(pins
(pin (num 1) (name E) (type passive))
(pin (num 2) (name B) (type input))
(pin (num 3) (name C) (type passive))))
(libpart (lib device) (part R)
(description Resistance)
(footprints
(fp R?)
(fp SM0603)
(fp SM0805)
(fp R?-*)
(fp SM1206))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib device) (part SW_PUSH)
(description "Push Button")
(fields
(field (name Reference) SW)
(field (name Value) SW_PUSH))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))))
(libpart (lib device) (part SWITCH_INV)
(description "Switch inverseur")
(fields
(field (name Reference) SW)
(field (name Value) SWITCH_INV))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))))
(libpart (lib conn) (part CONN_1)
(description "1 pin")
(fields
(field (name Reference) P)
(field (name Value) CONN_1))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib conn) (part CONN_13X2)
(fields
(field (name Reference) P)
(field (name Value) CONN_13X2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))
(pin (num 23) (name P23) (type passive))
(pin (num 24) (name P20) (type passive))
(pin (num 25) (name P24) (type passive))
(pin (num 26) (name P22) (type passive))))
(libpart (lib conn) (part CONN_2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name PM) (type passive))))
(libpart (lib conn) (part CONN_20X2)
(fields
(field (name Reference) P)
(field (name Value) CONN_20X2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))
(pin (num 23) (name P23) (type passive))
(pin (num 24) (name P24) (type passive))
(pin (num 25) (name ~) (type passive))
(pin (num 26) (name P26) (type passive))
(pin (num 27) (name P27) (type passive))
(pin (num 28) (name P28) (type passive))
(pin (num 29) (name P29) (type passive))
(pin (num 30) (name P30) (type passive))
(pin (num 31) (name P31) (type passive))
(pin (num 32) (name P32) (type passive))
(pin (num 33) (name P33) (type passive))
(pin (num 34) (name P34) (type passive))
(pin (num 35) (name P35) (type passive))
(pin (num 36) (name P36) (type passive))
(pin (num 37) (name P37) (type passive))
(pin (num 38) (name P38) (type passive))
(pin (num 39) (name P39) (type passive))
(pin (num 40) (name P40) (type passive))))
(libpart (lib conn) (part CONN_2X2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_2X2))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))))
(libpart (lib conn) (part CONN_3)
(description "Symbole general de connecteur")
(fields
(field (name Reference) K)
(field (name Value) CONN_3))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name PM) (type passive))
(pin (num 3) (name P3) (type passive))))
(libpart (lib conn) (part CONN_30X2)
(fields
(field (name Reference) P)
(field (name Value) CONN_30X2))
(pins
(pin (num 1) (name P1) (type passive))
(pin (num 2) (name P2) (type passive))
(pin (num 3) (name P3) (type passive))
(pin (num 4) (name P4) (type passive))
(pin (num 5) (name P5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))
(pin (num 10) (name P10) (type passive))
(pin (num 11) (name P11) (type passive))
(pin (num 12) (name P12) (type passive))
(pin (num 13) (name P13) (type passive))
(pin (num 14) (name P14) (type passive))
(pin (num 15) (name P15) (type passive))
(pin (num 16) (name P16) (type passive))
(pin (num 17) (name P17) (type passive))
(pin (num 18) (name P18) (type passive))
(pin (num 19) (name P19) (type passive))
(pin (num 20) (name P20) (type passive))
(pin (num 21) (name P21) (type passive))
(pin (num 22) (name P22) (type passive))
(pin (num 23) (name P23) (type passive))
(pin (num 24) (name P24) (type passive))
(pin (num 25) (name ~) (type passive))
(pin (num 26) (name P26) (type passive))
(pin (num 27) (name P27) (type passive))
(pin (num 28) (name P28) (type passive))
(pin (num 29) (name P29) (type passive))
(pin (num 30) (name P30) (type passive))
(pin (num 31) (name P31) (type passive))
(pin (num 32) (name P32) (type passive))
(pin (num 33) (name P33) (type passive))
(pin (num 34) (name P34) (type passive))
(pin (num 35) (name P35) (type passive))
(pin (num 36) (name P36) (type passive))
(pin (num 37) (name P37) (type passive))
(pin (num 38) (name P38) (type passive))
(pin (num 39) (name P39) (type passive))
(pin (num 40) (name P40) (type passive))
(pin (num 41) (name P41) (type passive))
(pin (num 42) (name P42) (type passive))
(pin (num 43) (name P43) (type passive))
(pin (num 44) (name P44) (type passive))
(pin (num 45) (name P45) (type passive))
(pin (num 46) (name P46) (type passive))
(pin (num 47) (name P47) (type passive))
(pin (num 48) (name P48) (type passive))
(pin (num 49) (name P49) (type passive))
(pin (num 50) (name P50) (type passive))
(pin (num 51) (name P51) (type passive))
(pin (num 52) (name P52) (type passive))
(pin (num 53) (name P53) (type passive))
(pin (num 54) (name P54) (type passive))
(pin (num 55) (name P55) (type passive))
(pin (num 56) (name P56) (type passive))
(pin (num 57) (name P57) (type passive))
(pin (num 58) (name P58) (type passive))
(pin (num 59) (name P59) (type passive))
(pin (num 60) (name P60) (type passive))))
(libpart (lib conn) (part CONN_4X2)
(description "Symbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_4X2))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name 6) (type passive))
(pin (num 7) (name 7) (type passive))
(pin (num 8) (name 8) (type passive))))
(libpart (lib conn) (part CONN_6)
(description "ymbole general de connecteur")
(fields
(field (name Reference) P)
(field (name Value) CONN_6))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name 6) (type passive))))
(libpart (lib conn) (part DB9)
(footprints
(fp DB9*))
(fields
(field (name Reference) J)
(field (name Value) DB9))
(pins
(pin (num 1) (name 1) (type passive))
(pin (num 2) (name 2) (type passive))
(pin (num 3) (name 3) (type passive))
(pin (num 4) (name 4) (type passive))
(pin (num 5) (name 5) (type passive))
(pin (num 6) (name P6) (type passive))
(pin (num 7) (name P7) (type passive))
(pin (num 8) (name P8) (type passive))
(pin (num 9) (name P9) (type passive))))
(libpart (lib regul) (part LT1129_QPACK)
(aliases
(alias LT_1129_QP))
(description "LowDrop Linear Regulator (QPACK 5 pins)")
(docs linear-tec/lt1129.pdf)
(fields
(field (name Reference) U)
(field (name Value) LT1129_QPACK))
(pins
(pin (num 1) (name OUT) (type power_out))
(pin (num 2) (name SENSE) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name SHDN) (type input))
(pin (num 5) (name IN) (type input))))
(libpart (lib 74xx) (part 74AHC1G14)
(description "inverting buffer with Schmitt trigger.")
(docs 74xx/74ahc_ahct1g14.pdf)
(fields
(field (name Reference) U)
(field (name Value) 74AHC1G14))
(pins
(pin (num 2) (name ~) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name ~) (type output))
(pin (num 5) (name VCC) (type power_in))))
(libpart (lib 74xx) (part 74LS125)
(description "Quad buffer 3 State out")
(fields
(field (name Reference) U)
(field (name Value) 74LS125))
(pins
(pin (num 1) (name E) (type input))
(pin (num 2) (name D) (type input))
(pin (num 3) (name O) (type 3state))
(pin (num 4) (name E) (type input))
(pin (num 5) (name D) (type input))
(pin (num 6) (name O) (type 3state))
(pin (num 7) (name GND) (type power_in))
(pin (num 8) (name O) (type 3state))
(pin (num 9) (name D) (type input))
(pin (num 10) (name E) (type input))
(pin (num 11) (name O) (type 3state))
(pin (num 12) (name D) (type input))
(pin (num 13) (name E) (type input))
(pin (num 14) (name VCC) (type power_in))))
(libpart (lib xilinx) (part XCR3256-TQ144)
(fields
(field (name Reference) U)
(field (name Value) XCR3256-TQ144))
(pins
(pin (num 1) (name I1) (type passive))
(pin (num 2) (name I0) (type passive))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name J0/TDI) (type passive))
(pin (num 5) (name J2) (type passive))
(pin (num 6) (name J3) (type passive))
(pin (num 7) (name J4) (type passive))
(pin (num 8) (name J11) (type passive))
(pin (num 9) (name J13) (type passive))
(pin (num 10) (name J14) (type passive))
(pin (num 11) (name J15) (type passive))
(pin (num 12) (name L2) (type passive))
(pin (num 13) (name PORT_EN) (type passive))
(pin (num 14) (name L3) (type passive))
(pin (num 15) (name L4) (type passive))
(pin (num 16) (name L11) (type passive))
(pin (num 17) (name GND) (type power_in))
(pin (num 18) (name L13) (type passive))
(pin (num 19) (name L14) (type passive))
(pin (num 20) (name N0/TMS) (type passive))
(pin (num 21) (name N2) (type passive))
(pin (num 22) (name N3) (type passive))
(pin (num 23) (name N4) (type passive))
(pin (num 24) (name VCC) (type power_in))
(pin (num 25) (name N11) (type passive))
(pin (num 26) (name N13) (type passive))
(pin (num 27) (name N14) (type passive))
(pin (num 28) (name N15) (type passive))
(pin (num 29) (name P2) (type passive))
(pin (num 30) (name P3) (type passive))
(pin (num 31) (name P4) (type passive))
(pin (num 32) (name P11) (type passive))
(pin (num 33) (name GND) (type power_in))
(pin (num 34) (name P13) (type passive))
(pin (num 35) (name P14) (type passive))
(pin (num 36) (name P15) (type passive))
(pin (num 37) (name O15) (type passive))
(pin (num 38) (name O13) (type passive))
(pin (num 39) (name O12) (type passive))
(pin (num 40) (name O4) (type passive))
(pin (num 41) (name O3) (type passive))
(pin (num 42) (name O2) (type passive))
(pin (num 43) (name O1) (type passive))
(pin (num 44) (name O0) (type passive))
(pin (num 45) (name M15) (type passive))
(pin (num 46) (name M13) (type passive))
(pin (num 47) (name M12) (type passive))
(pin (num 48) (name M11) (type passive))
(pin (num 49) (name M4) (type passive))
(pin (num 50) (name VCC) (type power_in))
(pin (num 51) (name VCC) (type power_in))
(pin (num 52) (name GND) (type power_in))
(pin (num 53) (name M2) (type passive))
(pin (num 54) (name M1) (type passive))
(pin (num 55) (name F1) (type passive))
(pin (num 56) (name F2) (type passive))
(pin (num 57) (name GND) (type power_in))
(pin (num 58) (name VCC) (type power_in))
(pin (num 59) (name GND) (type power_in))
(pin (num 60) (name F4) (type passive))
(pin (num 61) (name F11) (type passive))
(pin (num 62) (name F12) (type passive))
(pin (num 63) (name F13) (type passive))
(pin (num 64) (name GND) (type power_in))
(pin (num 65) (name F15) (type passive))
(pin (num 66) (name H0) (type passive))
(pin (num 67) (name H1) (type passive))
(pin (num 68) (name H2) (type passive))
(pin (num 69) (name H3) (type passive))
(pin (num 70) (name H11) (type passive))
(pin (num 71) (name H13) (type passive))
(pin (num 72) (name H15) (type passive))
(pin (num 73) (name VCC) (type power_in))
(pin (num 74) (name G14) (type passive))
(pin (num 75) (name G13) (type passive))
(pin (num 76) (name VCC) (type power_in))
(pin (num 77) (name G11) (type passive))
(pin (num 78) (name G4) (type passive))
(pin (num 79) (name G3) (type passive))
(pin (num 80) (name G2) (type passive))
(pin (num 81) (name G0) (type input))
(pin (num 82) (name E14) (type passive))
(pin (num 83) (name E13) (type passive))
(pin (num 84) (name E11) (type passive))
(pin (num 85) (name GND) (type power_in))
(pin (num 86) (name E4) (type passive))
(pin (num 87) (name E3) (type passive))
(pin (num 88) (name E2) (type passive))
(pin (num 89) (name E0/TCK) (type passive))
(pin (num 90) (name C14) (type passive))
(pin (num 91) (name C13) (type passive))
(pin (num 92) (name C11) (type passive))
(pin (num 93) (name C4) (type passive))
(pin (num 94) (name C3) (type passive))
(pin (num 95) (name VCC) (type power_in))
(pin (num 96) (name C2) (type passive))
(pin (num 97) (name C1) (type passive))
(pin (num 98) (name C0) (type passive))
(pin (num 99) (name A13) (type passive))
(pin (num 100) (name A12) (type passive))
(pin (num 101) (name A11) (type passive))
(pin (num 102) (name A4) (type passive))
(pin (num 103) (name A3) (type passive))
(pin (num 104) (name A2/TDO) (type passive))
(pin (num 105) (name GND) (type power_in))
(pin (num 106) (name A0) (type passive))
(pin (num 107) (name B0) (type passive))
(pin (num 108) (name B1) (type passive))
(pin (num 109) (name B4) (type passive))
(pin (num 110) (name B11) (type passive))
(pin (num 111) (name B12) (type passive))
(pin (num 112) (name B14) (type passive))
(pin (num 113) (name B15) (type passive))
(pin (num 114) (name D0) (type passive))
(pin (num 115) (name VCC) (type power_in))
(pin (num 116) (name D1) (type passive))
(pin (num 117) (name D2) (type passive))
(pin (num 118) (name D4) (type passive))
(pin (num 119) (name D11) (type passive))
(pin (num 120) (name D12) (type passive))
(pin (num 121) (name D13) (type passive))
(pin (num 122) (name D15) (type passive))
(pin (num 123) (name VCC) (type power_in))
(pin (num 124) (name GND) (type power_in))
(pin (num 125) (name CLK3/IN3) (type input))
(pin (num 126) (name CLK2/IN2) (type input))
(pin (num 127) (name CLK1/IN1) (type input))
(pin (num 128) (name CLK0/IN0) (type input))
(pin (num 129) (name GND) (type power_in))
(pin (num 130) (name VCC) (type power_in))
(pin (num 131) (name K15) (type passive))
(pin (num 132) (name K14) (type passive))
(pin (num 133) (name K13) (type passive))
(pin (num 134) (name K12) (type passive))
(pin (num 135) (name GND) (type power_in))
(pin (num 136) (name K11) (type passive))
(pin (num 137) (name K4) (type passive))
(pin (num 138) (name K2) (type passive))
(pin (num 139) (name I15) (type passive))
(pin (num 140) (name I14) (type passive))
(pin (num 141) (name I13) (type passive))
(pin (num 142) (name I12) (type passive))
(pin (num 143) (name I4) (type passive))
(pin (num 144) (name VCC) (type power_in))))
(libpart (lib special) (part MAX232)
(aliases
(alias MAX202))
(description "Driver de Ligne RS232")
(docs maxim/MAX220-MAX249.pdf)
(fields
(field (name Reference) U)
(field (name Value) MAX232))
(pins
(pin (num 1) (name C1+) (type input))
(pin (num 2) (name V+) (type power_out))
(pin (num 3) (name C1-) (type input))
(pin (num 4) (name C2+) (type input))
(pin (num 5) (name C2-) (type input))
(pin (num 6) (name V-) (type power_out))
(pin (num 7) (name T2OUT) (type output))
(pin (num 8) (name R2IN) (type input))
(pin (num 9) (name R2OUT) (type output))
(pin (num 10) (name T2IN) (type input))
(pin (num 11) (name T1IN) (type input))
(pin (num 12) (name R1OUT) (type output))
(pin (num 13) (name R1IN) (type input))
(pin (num 14) (name T1OUT) (type output))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name VCC) (type power_in))))
(libpart (lib special) (part MC34064P)
(aliases
(alias MC33064P))
(description "Undervoltage sensing circuit (TP-226AA package)")
(docs onsemi/mc34064.pdf)
(fields
(field (name Reference) U)
(field (name Value) MC34064P))
(pins
(pin (num 1) (name Rst) (type openCol))
(pin (num 2) (name In) (type input))
(pin (num 3) (name Gbd) (type input))))
(libpart (lib motorola) (part MCF5213-LQFP100)
(description "Coldfire with SRAM and Flash Eprom - LQFP100 package")
(fields
(field (name Reference) U)
(field (name Value) MCF5213-LQFP100))
(pins
(pin (num 1) (name VCC) (type power_in))
(pin (num 2) (name VCC) (type power_in))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name ~URTS1~/SYNCB/UTXD2/PUB2) (type BiDi))
(pin (num 5) (name TEST) (type input))
(pin (num 6) (name ~UCTS0~/CANRX/PUA3) (type BiDi))
(pin (num 7) (name URXD0/PUA1) (type BiDi))
(pin (num 8) (name UTXD0/PUA0) (type BiDi))
(pin (num 9) (name ~URTS0~/CANTX/PUA2) (type BiDi))
(pin (num 10) (name SCL/CANTX/PAS0/UTXD2) (type BiDi))
(pin (num 11) (name SDA/CANRX/PAS1/URXD2) (type BiDi))
(pin (num 12) (name QSPI_CS3/SYNCA/SYNCB/PQS6) (type BiDi))
(pin (num 13) (name QSPI_CS2/PQS5) (type BiDi))
(pin (num 14) (name VCC) (type power_in))
(pin (num 15) (name GND) (type power_in))
(pin (num 16) (name QSPI_DIN/EZPD/CANRX/RXD1/PQS1) (type BiDi))
(pin (num 17) (name QSPI_DOUT/EZPQ/CANTX/RXD0/PQS0) (type BiDi))
(pin (num 18) (name QSPI_CLK/EZPCK/SCL/RTS1/PQS2) (type BiDi))
(pin (num 19) (name QSPI_CS1/PQS4) (type BiDi))
(pin (num 20) (name QSPI_CS0/SDA/CTS1/PQS3) (type BiDi))
(pin (num 21) (name RCON/EZPCS) (type input))
(pin (num 22) (name VCC) (type power_in))
(pin (num 23) (name VCC) (type power_in))
(pin (num 24) (name GND) (type power_in))
(pin (num 25) (name GND) (type power_in))
(pin (num 26) (name JTAG_EN) (type input))
(pin (num 27) (name ~UCTS2~/PUC3) (type BiDi))
(pin (num 28) (name URXD2/PUC1) (type BiDi))
(pin (num 29) (name UTXD2/PUC0) (type BiDi))
(pin (num 30) (name ~URTS2~/PUC2) (type BiDi))
(pin (num 31) (name DTIN2/DTOUT2/PWM4/PTC2) (type BiDi))
(pin (num 32) (name DTIN3/DTOUT3/PWM6/PTC3) (type BiDi))
(pin (num 33) (name PWM3/PTD1) (type BiDi))
(pin (num 34) (name VCC) (type power_in))
(pin (num 35) (name GND) (type power_in))
(pin (num 36) (name DTIN0/DTOUT0/PWM0/PTC0) (type BiDi))
(pin (num 37) (name DTIN1/DTOUT1/PWM2/PTC1) (type BiDi))
(pin (num 38) (name PWM1/PTD0) (type BiDi))
(pin (num 39) (name CLKMOD1) (type input))
(pin (num 40) (name CLKMOD0) (type input))
(pin (num 41) (name VCC) (type power_in))
(pin (num 42) (name GND) (type power_in))
(pin (num 43) (name AN0/PAN0) (type BiDi))
(pin (num 44) (name AN1/PAN1) (type BiDi))
(pin (num 45) (name AN2/PAN2) (type BiDi))
(pin (num 46) (name AN3/PAN3) (type BiDi))
(pin (num 47) (name VSSA) (type input))
(pin (num 48) (name VRL) (type input))
(pin (num 49) (name VRH) (type input))
(pin (num 50) (name VCCA) (type input))
(pin (num 51) (name AN7/PAN7) (type BiDi))
(pin (num 52) (name AN6/PAN6) (type BiDi))
(pin (num 53) (name AN5/PAN5) (type BiDi))
(pin (num 54) (name AN4/PAN4) (type BiDi))
(pin (num 55) (name VSTBY) (type power_in))
(pin (num 56) (name GND) (type power_in))
(pin (num 57) (name VCC) (type power_in))
(pin (num 58) (name GPT0/PWM1/PTA0) (type BiDi))
(pin (num 59) (name GPT1/PWM3/PTA1) (type BiDi))
(pin (num 60) (name PWM5/PTD2) (type BiDi))
(pin (num 61) (name GPT2PWM5//PTA2) (type BiDi))
(pin (num 62) (name GPT3/PWM7/PTA3) (type BiDi))
(pin (num 63) (name PWM7/PTD3) (type BiDi))
(pin (num 64) (name TCLK/PSTCLK/CLKOUT) (type input))
(pin (num 65) (name PST0/PDD0) (type BiDi))
(pin (num 66) (name PST1/PDD1) (type BiDi))
(pin (num 67) (name GND) (type power_in))
(pin (num 68) (name VCC) (type power_in))
(pin (num 69) (name PST2/PDD2) (type BiDi))
(pin (num 70) (name PST3/PDD3) (type BiDi))
(pin (num 71) (name GNDPLL) (type passive))
(pin (num 72) (name XTAL) (type output))
(pin (num 73) (name CLKIN/EXTAL) (type input))
(pin (num 74) (name VCCPLL) (type passive))
(pin (num 75) (name GND) (type power_in))
(pin (num 76) (name ~BKPT~/TMS) (type input))
(pin (num 77) (name DDATA0/PDD4) (type BiDi))
(pin (num 78) (name DDATA1/PDD5) (type BiDi))
(pin (num 79) (name DSI/TDI) (type input))
(pin (num 80) (name DSO/TDO) (type output))
(pin (num 81) (name VCC) (type power_in))
(pin (num 82) (name GND) (type power_in))
(pin (num 83) (name DDATA2/PDD6) (type BiDi))
(pin (num 84) (name DDATA3/PDD7) (type BiDi))
(pin (num 85) (name DSCLK/~TRST~) (type input))
(pin (num 86) (name ALLPST) (type output))
(pin (num 87) (name ~IRQ1~/PNQ1/SYNCA/PWM1) (type BiDi))
(pin (num 88) (name ~IRQ2~/PNQ2) (type BiDi))
(pin (num 89) (name ~IRQ3~/PNQ3) (type BiDi))
(pin (num 90) (name ~IRQ4~/PNQ4) (type BiDi))
(pin (num 91) (name ~IRQ5~/PNQ5) (type BiDi))
(pin (num 92) (name GND) (type power_in))
(pin (num 93) (name VCC) (type power_in))
(pin (num 94) (name ~IRQ6~/PNQ6) (type BiDi))
(pin (num 95) (name ~IRQ7~/PNQ7) (type BiDi))
(pin (num 96) (name RSTI) (type input))
(pin (num 97) (name RSTO) (type output))
(pin (num 98) (name ~UCTS1~/SYNCA/URXD2/PUB3) (type BiDi))
(pin (num 99) (name UTXD1/PUB0) (type BiDi))
(pin (num 100) (name URXD1/PUB1) (type BiDi))))
(libpart (lib kit-dev-coldfire-xilinx_5213-cache) (part PCA82C251)
(fields
(field (name Reference) U)
(field (name Value) PCA82C251))
(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 output))
(pin (num 6) (name CAN-) (type BiDi))
(pin (num 7) (name CAN+) (type BiDi))
(pin (num 8) (name Rsl) (type input)))))
(libraries
(library (logical device)
(uri f:\kicad\share\library\device.lib))
(library (logical conn)
(uri f:\kicad\share\library\conn.lib))
(library (logical regul)
(uri f:\kicad\share\library\regul.lib))
(library (logical 74xx)
(uri f:\kicad\share\library\74xx.lib))
(library (logical xilinx)
(uri f:\kicad\share\library\xilinx.lib))
(library (logical special)
(uri f:\kicad\share\library\special.lib))
(library (logical motorola)
(uri f:\kicad\share\library\motorola.lib))
(library (logical kit-dev-coldfire-xilinx_5213-cache)
(uri F:\kicad-launchpad\testing\demos\kit-dev-coldfire-xilinx_5213\kit-dev-coldfire-xilinx_5213-cache.lib)))
(nets
(net (code 1) (name /GPT3)
(node (ref U1) (pin 62))
(node (ref MCU_PORT1) (pin 52)))
(net (code 2) (name /inout_user/UCTS2)
(node (ref U1) (pin 27))
(node (ref MCU_PORT1) (pin 48))
(node (ref UART_EN2) (pin 8)))
(net (code 3) (name /inout_user/URTS2)
(node (ref MCU_PORT1) (pin 46))
(node (ref UART_EN2) (pin 6))
(node (ref U1) (pin 30)))
(net (code 4) (name /inout_user/UCTS1)
(node (ref P3) (pin 1))
(node (ref U9) (pin 49))
(node (ref U1) (pin 98))
(node (ref UART_EN1) (pin 8))
(node (ref MCU_PORT1) (pin 11)))
(net (code 5) (name /inout_user/URTS1)
(node (ref U9) (pin 53))
(node (ref U1) (pin 4))
(node (ref UART_EN1) (pin 6))
(node (ref P3) (pin 3))
(node (ref MCU_PORT1) (pin 9)))
(net (code 6) (name /inout_user/UCTS0)
(node (ref UART_EN0) (pin 8))
(node (ref U1) (pin 6))
(node (ref MCU_PORT1) (pin 44)))
(net (code 7) (name /inout_user/URTS0)
(node (ref UART_EN0) (pin 6))
(node (ref MCU_PORT1) (pin 42))
(node (ref U1) (pin 9)))
(net (code 8) (name /GPT2)
(node (ref MCU_PORT1) (pin 51))
(node (ref U1) (pin 61)))
(net (code 9) (name /GPT1)
(node (ref U1) (pin 59))
(node (ref MCU_PORT1) (pin 50)))
(net (code 10) (name /GPT0)
(node (ref U1) (pin 58))
(node (ref MCU_PORT1) (pin 49)))
(net (code 11) (name GND)
(node (ref U9) (pin 85))
(node (ref U9) (pin 57))
(node (ref U9) (pin 17))
(node (ref U9) (pin 126))
(node (ref U4) (pin 7))
(node (ref U1) (pin 24))
(node (ref U9) (pin 135))
(node (ref U9) (pin 125))
(node (ref U1) (pin 15))
(node (ref U1) (pin 25))
(node (ref U9) (pin 59))
(node (ref MCU_PORT1) (pin 3))
(node (ref MCU_PORT1) (pin 60))
(node (ref U1) (pin 35))
(node (ref U1) (pin 82))
(node (ref U1) (pin 92))
(node (ref GND1) (pin 1))
(node (ref U2) (pin 3))
(node (ref RST_SW1) (pin 2))
(node (ref U1) (pin 67))
(node (ref U1) (pin 75))
(node (ref U9) (pin 105))
(node (ref UARTCAN2) (pin 5))
(node (ref U9) (pin 124))
(node (ref U1) (pin 56))
(node (ref U1) (pin 71))
(node (ref U9) (pin 129))
(node (ref U9) (pin 127))
(node (ref U1) (pin 42))
(node (ref VR1) (pin 3))
(node (ref C52) (pin 2))
(node (ref MCU_PORT1) (pin 54))
(node (ref P1) (pin 2))
(node (ref C53) (pin 2))
(node (ref C54) (pin 2))
(node (ref C59) (pin 2))
(node (ref C60) (pin 2))
(node (ref C61) (pin 2))
(node (ref D8) (pin 2))
(node (ref U3) (pin 15))
(node (ref C22) (pin 2))
(node (ref LED2) (pin 2))
(node (ref J1) (pin 1))
(node (ref UARTCAN0) (pin 5))
(node (ref RED1) (pin 2))
(node (ref LED4) (pin 2))
(node (ref LED3) (pin 2))
(node (ref LED1) (pin 2))
(node (ref C28) (pin 2))
(node (ref R30) (pin 1))
(node (ref C46) (pin 2))
(node (ref C43) (pin 1))
(node (ref R35) (pin 1))
(node (ref COM_SEL2) (pin 1))
(node (ref R23) (pin 1))
(node (ref C33) (pin 2))
(node (ref U8) (pin 15))
(node (ref J1) (pin 2))
(node (ref C45) (pin 2))
(node (ref SW2) (pin 2))
(node (ref U1) (pin 3))
(node (ref SW1) (pin 2))
(node (ref C40) (pin 2))
(node (ref TB1) (pin 2))
(node (ref RCAN2) (pin 1))
(node (ref C26) (pin 2))
(node (ref R36) (pin 2))
(node (ref C38) (pin 2))
(node (ref LED_EN1) (pin 1))
(node (ref D7) (pin 1))
(node (ref UARTCAN1) (pin 5))
(node (ref C41) (pin 2))
(node (ref C34) (pin 2))
(node (ref LED5) (pin 2))
(node (ref C27) (pin 2))
(node (ref U7) (pin 2))
(node (ref U5) (pin 15))
(node (ref C58) (pin 2))
(node (ref C11) (pin 2))
(node (ref C6) (pin 2))
(node (ref C12) (pin 2))
(node (ref C1) (pin 2))
(node (ref C57) (pin 2))
(node (ref C56) (pin 2))
(node (ref CLK0) (pin 1))
(node (ref C2) (pin 2))
(node (ref C51) (pin 2))
(node (ref C17) (pin 2))
(node (ref U9) (pin 3))
(node (ref C55) (pin 2))
(node (ref C21) (pin 2))
(node (ref C9) (pin 2))
(node (ref C10) (pin 2))
(node (ref BDM_EN1) (pin 1))
(node (ref C8) (pin 2))
(node (ref C4) (pin 2))
(node (ref C5) (pin 2))
(node (ref C7) (pin 2))
(node (ref C20) (pin 2))
(node (ref BDM_PORT1) (pin 23))
(node (ref D9) (pin 2))
(node (ref BDM_PORT1) (pin 11))
(node (ref BDM_PORT1) (pin 20))
(node (ref P4) (pin 2))
(node (ref BDM_PORT1) (pin 5))
(node (ref CLK1) (pin 1))
(node (ref BDM_PORT1) (pin 3))
(node (ref U9) (pin 33))
(node (ref R26) (pin 2))
(node (ref LV1) (pin 3))
(node (ref U9) (pin 64))
(node (ref R12) (pin 2))
(node (ref P4) (pin 40))
(node (ref U9) (pin 52))
(node (ref R9) (pin 2))
(node (ref C3) (pin 2))
(node (ref C14) (pin 1))
(node (ref FB1) (pin 1))
(node (ref C15) (pin 2))
(node (ref U9) (pin 13)))
(net (code 12) (name "Net-(R22-Pad2)")
(node (ref RED1) (pin 1))
(node (ref R22) (pin 2)))
(net (code 13) (name /inout_user/RTS0-)
(node (ref MCU_PORT1) (pin 4))
(node (ref R21) (pin 1))
(node (ref U1) (pin 97)))
(net (code 14) (name /CLKIN/EXTAL)
(node (ref Y1) (pin 1))
(node (ref C1) (pin 1))
(node (ref U1) (pin 73))
(node (ref R1) (pin 2)))
(net (code 15) (name /xilinx/GLCK2)
(node (ref U9) (pin 128))
(node (ref Y1) (pin 2))
(node (ref C2) (pin 1))
(node (ref R1) (pin 1))
(node (ref U1) (pin 72)))
(net (code 16) (name GNDA)
(node (ref C18) (pin 2))
(node (ref C16) (pin 2))
(node (ref MCU_PORT1) (pin 58))
(node (ref MCU_PORT1) (pin 56))
(node (ref FB1) (pin 2))
(node (ref U1) (pin 48))
(node (ref U1) (pin 47)))
(net (code 17) (name +3.3V)
(node (ref U1) (pin 1))
(node (ref C6) (pin 1))
(node (ref U1) (pin 2))
(node (ref U1) (pin 57))
(node (ref R45) (pin 2))
(node (ref C26) (pin 1))
(node (ref R19) (pin 1))
(node (ref R2) (pin 1))
(node (ref VR1) (pin 2))
(node (ref R18) (pin 1))
(node (ref U2) (pin 5))
(node (ref R16) (pin 1))
(node (ref RCAN1) (pin 1))
(node (ref U1) (pin 68))
(node (ref R25) (pin 1))
(node (ref R20) (pin 1))
(node (ref VR1) (pin 1))
(node (ref U9) (pin 24))
(node (ref U9) (pin 73))
(node (ref U8) (pin 16))
(node (ref R64) (pin 1))
(node (ref VX_EN1) (pin 1))
(node (ref U9) (pin 50))
(node (ref LV1) (pin 2))
(node (ref C35) (pin 1))
(node (ref C46) (pin 1))
(node (ref U4) (pin 14))
(node (ref VDDA1) (pin 1))
(node (ref MCU_PORT1) (pin 59))
(node (ref ABRT_SW1) (pin 2))
(node (ref Q1) (pin 1))
(node (ref R34) (pin 1))
(node (ref R15) (pin 1))
(node (ref C28) (pin 1))
(node (ref U9) (pin 51))
(node (ref C30) (pin 1))
(node (ref C34) (pin 1))
(node (ref U5) (pin 16))
(node (ref U7) (pin 3))
(node (ref R47) (pin 1))
(node (ref R48) (pin 1))
(node (ref R49) (pin 1))
(node (ref R50) (pin 1))
(node (ref R53) (pin 2))
(node (ref C23) (pin 1))
(node (ref C22) (pin 1))
(node (ref U3) (pin 16))
(node (ref C40) (pin 1))
(node (ref L2) (pin 1))
(node (ref R4) (pin 2))
(node (ref C10) (pin 1))
(node (ref U9) (pin 76))
(node (ref P1) (pin 1))
(node (ref C9) (pin 1))
(node (ref C57) (pin 1))
(node (ref C56) (pin 1))
(node (ref C8) (pin 1))
(node (ref C58) (pin 1))
(node (ref U9) (pin 95))
(node (ref R17) (pin 1))
(node (ref C53) (pin 1))
(node (ref C52) (pin 1))
(node (ref R5) (pin 2))
(node (ref U9) (pin 130))
(node (ref U9) (pin 115))
(node (ref C54) (pin 1))
(node (ref C59) (pin 1))
(node (ref C4) (pin 1))
(node (ref LEDABRT1) (pin 1))
(node (ref C51) (pin 1))
(node (ref U9) (pin 58))
(node (ref U1) (pin 22))
(node (ref U1) (pin 81))
(node (ref R57) (pin 1))
(node (ref U1) (pin 41))
(node (ref C60) (pin 1))
(node (ref C11) (pin 1))
(node (ref C14) (pin 2))
(node (ref U9) (pin 123))
(node (ref U1) (pin 23))
(node (ref R10) (pin 2))
(node (ref R8) (pin 2))
(node (ref R6) (pin 2))
(node (ref C55) (pin 1))
(node (ref BDM_PORT1) (pin 9))
(node (ref C12) (pin 1))
(node (ref U1) (pin 34))
(node (ref BDM_PORT1) (pin 25))
(node (ref U1) (pin 14))
(node (ref U1) (pin 93))
(node (ref C5) (pin 1))
(node (ref R13) (pin 2))
(node (ref C61) (pin 1))
(node (ref C17) (pin 1))
(node (ref C7) (pin 1))
(node (ref U9) (pin 144))
(node (ref R11) (pin 2))
(node (ref U1) (pin 55)))
(net (code 18) (name "Net-(L1-Pad1)")
(node (ref VDDA1) (pin 2))
(node (ref L1) (pin 1)))
(net (code 19) (name /IRQ-7)
(node (ref D1) (pin 1))
(node (ref MCU_PORT1) (pin 39))
(node (ref U1) (pin 95))
(node (ref R13) (pin 1)))
(net (code 20) (name "Net-(Q1-Pad2)")
(node (ref Q1) (pin 2))
(node (ref R21) (pin 2)))
(net (code 21) (name "Net-(Q1-Pad3)")
(node (ref R22) (pin 1))
(node (ref Q1) (pin 3)))
(net (code 22) (name /inout_user/RSTI-)
(node (ref BDM_PORT1) (pin 7))
(node (ref U1) (pin 96))
(node (ref D3) (pin 1))
(node (ref R15) (pin 2))
(node (ref MCU_PORT1) (pin 6)))
(net (code 23) (name /inout_user/PWM3)
(node (ref U1) (pin 33))
(node (ref MCU_PORT1) (pin 15)))
(net (code 24) (name /inout_user/PWM1)
(node (ref MCU_PORT1) (pin 13))
(node (ref U1) (pin 38)))
(net (code 25) (name /inout_user/PWM7)
(node (ref MCU_PORT1) (pin 32))
(node (ref U1) (pin 63)))
(net (code 26) (name /inout_user/PWM5)
(node (ref MCU_PORT1) (pin 30))
(node (ref U1) (pin 60)))
(net (code 27) (name /BKPT-)
(node (ref U1) (pin 76))
(node (ref BDM_PORT1) (pin 2))
(node (ref R17) (pin 2)))
(net (code 28) (name /CLKMOD1)
(node (ref CLK1) (pin 2))
(node (ref R2) (pin 2))
(node (ref U1) (pin 39)))
(net (code 29) (name /DSI)
(node (ref BDM_PORT1) (pin 8))
(node (ref U1) (pin 79))
(node (ref R19) (pin 2)))
(net (code 30) (name /PST1)
(node (ref U1) (pin 66))
(node (ref BDM_PORT1) (pin 14)))
(net (code 31) (name /PST0)
(node (ref U1) (pin 65))
(node (ref BDM_PORT1) (pin 15)))
(net (code 32) (name /DSO)
(node (ref U1) (pin 80))
(node (ref R20) (pin 2))
(node (ref BDM_PORT1) (pin 10)))
(net (code 33) (name /DSCLK)
(node (ref BDM_PORT1) (pin 4))
(node (ref R18) (pin 2))
(node (ref U1) (pin 85)))
(net (code 34) (name "Net-(R46-Pad1)")
(node (ref U1) (pin 64))
(node (ref R46) (pin 1)))
(net (code 35) (name /JTAG_EN)
(node (ref U1) (pin 26))
(node (ref BDM_EN1) (pin 2))
(node (ref R16) (pin 2)))
(net (code 36) (name "Net-(BDM_PORT1-Pad1)")
(node (ref BDM_PORT1) (pin 1)))
(net (code 37) (name "Net-(BDM_PORT1-Pad6)")
(node (ref BDM_PORT1) (pin 6))
(node (ref CT1) (pin 1)))
(net (code 38) (name "Net-(BDM_PORT1-Pad21)")
(node (ref BDM_PORT1) (pin 21)))
(net (code 39) (name "Net-(BDM_PORT1-Pad22)")
(node (ref BDM_PORT1) (pin 22)))
(net (code 40) (name "Net-(LEDABRT1-Pad2)")
(node (ref R14) (pin 1))
(node (ref LEDABRT1) (pin 2)))
(net (code 41) (name "Net-(ABRT_SW1-Pad1)")
(node (ref R7) (pin 1))
(node (ref ABRT_SW1) (pin 1)))
(net (code 42) (name /inout_user/RCON-)
(node (ref U1) (pin 21))
(node (ref R45) (pin 1))
(node (ref MCU_PORT1) (pin 53)))
(net (code 43) (name "Net-(BDM_PORT1-Pad26)")
(node (ref BDM_PORT1) (pin 26))
(node (ref TA-1) (pin 1)))
(net (code 44) (name /DDAT3)
(node (ref U1) (pin 84))
(node (ref BDM_PORT1) (pin 16)))
(net (code 45) (name /DDAT2)
(node (ref BDM_PORT1) (pin 17))
(node (ref U1) (pin 83)))
(net (code 46) (name /DDAT1)
(node (ref U1) (pin 78))
(node (ref BDM_PORT1) (pin 18)))
(net (code 47) (name /DDAT0)
(node (ref U1) (pin 77))
(node (ref BDM_PORT1) (pin 19)))
(net (code 48) (name /CLKMOD0)
(node (ref U1) (pin 40))
(node (ref R25) (pin 2))
(node (ref CLK0) (pin 2)))
(net (code 49) (name /inout_user/VCCA)
(node (ref MCU_PORT1) (pin 55))
(node (ref C16) (pin 1))
(node (ref L1) (pin 2))
(node (ref MCU_PORT1) (pin 57))
(node (ref C18) (pin 1))
(node (ref U1) (pin 49))
(node (ref U1) (pin 50)))
(net (code 50) (name "Net-(D1-Pad2)")
(node (ref D1) (pin 2))
(node (ref R14) (pin 2))
(node (ref U2) (pin 4)))
(net (code 51) (name "Net-(C15-Pad1)")
(node (ref C15) (pin 1))
(node (ref R12) (pin 1))
(node (ref R7) (pin 2))
(node (ref U2) (pin 2)))
(net (code 52) (name /VDDPLL)
(node (ref C20) (pin 1))
(node (ref C21) (pin 1))
(node (ref U1) (pin 74))
(node (ref L2) (pin 2)))
(net (code 53) (name /inout_user/QSPI_DIN)
(node (ref MCU_PORT1) (pin 19))
(node (ref U9) (pin 46))
(node (ref U1) (pin 16)))
(net (code 54) (name /inout_user/CANTX)
(node (ref PULUPEN1) (pin 5))
(node (ref CAN_EN1) (pin 1))
(node (ref MCU_PORT1) (pin 26))
(node (ref U1) (pin 10)))
(net (code 55) (name /QSPI_CS0)
(node (ref PULUPEN1) (pin 3))
(node (ref MCU_PORT1) (pin 23))
(node (ref U1) (pin 20)))
(net (code 56) (name /PST3)
(node (ref BDM_PORT1) (pin 12))
(node (ref U1) (pin 70)))
(net (code 57) (name /inout_user/CANRX)
(node (ref PULUPEN1) (pin 7))
(node (ref MCU_PORT1) (pin 28))
(node (ref U1) (pin 11))
(node (ref CAN_EN1) (pin 4)))
(net (code 58) (name /QSPI_CS3)
(node (ref MCU_PORT1) (pin 29))
(node (ref U1) (pin 12)))
(net (code 59) (name /xilinx/QSPI_CS2)
(node (ref U1) (pin 13))
(node (ref U9) (pin 45))
(node (ref MCU_PORT1) (pin 27)))
(net (code 60) (name /inout_user/UTXD1)
(node (ref U1) (pin 99))
(node (ref MCU_PORT1) (pin 5))
(node (ref UART_EN1) (pin 2)))
(net (code 61) (name /inout_user/URXD1)
(node (ref U1) (pin 100))
(node (ref MCU_PORT1) (pin 7))
(node (ref UART_EN1) (pin 4)))
(net (code 62) (name /TCLK)
(node (ref R26) (pin 1))
(node (ref CLKOUT1) (pin 1))
(node (ref BDM_PORT1) (pin 24))
(node (ref CT1) (pin 2))
(node (ref R46) (pin 2)))
(net (code 63) (name /inout_user/URXD2)
(node (ref U1) (pin 28))
(node (ref MCU_PORT1) (pin 47))
(node (ref UART_EN2) (pin 4)))
(net (code 64) (name /ALLPST)
(node (ref ALLPST1) (pin 1))
(node (ref U1) (pin 86)))
(net (code 65) (name /inout_user/QSPI_DOUT)
(node (ref MCU_PORT1) (pin 17))
(node (ref U1) (pin 17))
(node (ref U9) (pin 47)))
(net (code 66) (name /inout_user/QSPI_SCLK)
(node (ref U1) (pin 18))
(node (ref MCU_PORT1) (pin 21))
(node (ref U9) (pin 48))
(node (ref PULUPEN1) (pin 1)))
(net (code 67) (name /xilinx/QSPI_CS1)
(node (ref U9) (pin 54))
(node (ref U1) (pin 19))
(node (ref MCU_PORT1) (pin 25)))
(net (code 68) (name /inout_user/UTXD2)
(node (ref MCU_PORT1) (pin 45))
(node (ref UART_EN2) (pin 2))
(node (ref U1) (pin 29)))
(net (code 69) (name /PST2)
(node (ref BDM_PORT1) (pin 13))
(node (ref U1) (pin 69)))
(net (code 70) (name /inout_user/UTXD0)
(node (ref UART_EN0) (pin 2))
(node (ref U1) (pin 8))
(node (ref MCU_PORT1) (pin 41)))
(net (code 71) (name "Net-(C3-Pad1)")
(node (ref C3) (pin 1))
(node (ref D3) (pin 2))
(node (ref LV1) (pin 1))
(node (ref RST_SW1) (pin 1)))
(net (code 72) (name "Net-(R9-Pad1)")
(node (ref U1) (pin 5))
(node (ref R9) (pin 1)))
(net (code 73) (name /inout_user/URXD0)
(node (ref UART_EN0) (pin 4))
(node (ref MCU_PORT1) (pin 43))
(node (ref U1) (pin 7)))
(net (code 74) (name /inout_user/CTS1)
(node (ref UARTCAN1) (pin 7))
(node (ref U5) (pin 8)))
(net (code 75) (name "Net-(C33-Pad1)")
(node (ref U5) (pin 6))
(node (ref C33) (pin 1)))
(net (code 76) (name "Net-(C27-Pad1)")
(node (ref C27) (pin 1))
(node (ref U3) (pin 6)))
(net (code 77) (name "Net-(C32-Pad2)")
(node (ref C32) (pin 2))
(node (ref U5) (pin 5)))
(net (code 78) (name "Net-(R35-Pad2)")
(node (ref U5) (pin 10))
(node (ref UART_EN1) (pin 5))
(node (ref R35) (pin 2)))
(net (code 79) (name "Net-(C31-Pad2)")
(node (ref C31) (pin 2))
(node (ref U5) (pin 3)))
(net (code 80) (name "Net-(C30-Pad2)")
(node (ref C30) (pin 2))
(node (ref U5) (pin 2)))
(net (code 81) (name "Net-(U5-Pad11)")
(node (ref UART_EN1) (pin 1))
(node (ref U5) (pin 11)))
(net (code 82) (name "Net-(U5-Pad12)")
(node (ref U5) (pin 12))
(node (ref UART_EN1) (pin 3)))
(net (code 83) (name "Net-(C31-Pad1)")
(node (ref C31) (pin 1))
(node (ref U5) (pin 1)))
(net (code 84) (name "Net-(U5-Pad9)")
(node (ref U5) (pin 9))
(node (ref UART_EN1) (pin 7)))
(net (code 85) (name "Net-(UARTCAN1-Pad9)")
(node (ref UARTCAN1) (pin 9)))
(net (code 86) (name /inout_user/RXD0)
(node (ref U3) (pin 13))
(node (ref UARTCAN0) (pin 3)))
(net (code 87) (name /inout_user/RTS0)
(node (ref UARTCAN0) (pin 8))
(node (ref U3) (pin 7)))
(net (code 88) (name "Net-(UARTCAN0-Pad9)")
(node (ref UARTCAN0) (pin 9)))
(net (code 89) (name /inout_user/TXD0)
(node (ref UARTCAN0) (pin 2))
(node (ref U3) (pin 14)))
(net (code 90) (name "Net-(C25-Pad1)")
(node (ref C25) (pin 1))
(node (ref U3) (pin 4)))
(net (code 91) (name "Net-(C25-Pad2)")
(node (ref U3) (pin 5))
(node (ref C25) (pin 2)))
(net (code 92) (name "Net-(C24-Pad1)")
(node (ref C24) (pin 1))
(node (ref U3) (pin 1)))
(net (code 93) (name "Net-(C24-Pad2)")
(node (ref U3) (pin 3))
(node (ref C24) (pin 2)))
(net (code 94) (name "Net-(C23-Pad2)")
(node (ref C23) (pin 2))
(node (ref U3) (pin 2)))
(net (code 95) (name "Net-(U3-Pad11)")
(node (ref UART_EN0) (pin 1))
(node (ref U3) (pin 11)))
(net (code 96) (name "Net-(U3-Pad12)")
(node (ref UART_EN0) (pin 3))
(node (ref U3) (pin 12)))
(net (code 97) (name "Net-(U3-Pad9)")
(node (ref U3) (pin 9))
(node (ref UART_EN0) (pin 7)))
(net (code 98) (name "Net-(UARTCAN0-Pad1)")
(node (ref UARTCAN0) (pin 1))
(node (ref UARTCAN0) (pin 4))
(node (ref UARTCAN0) (pin 6)))
(net (code 99) (name "Net-(C45-Pad1)")
(node (ref U8) (pin 6))
(node (ref C45) (pin 1)))
(net (code 100) (name "Net-(UARTCAN2-Pad9)")
(node (ref UARTCAN2) (pin 9)))
(net (code 101) (name /inout_user/CAN_H)
(node (ref COM_SEL1) (pin 1))
(node (ref RCAN2) (pin 2))
(node (ref CAN_TERM1) (pin 1))
(node (ref U7) (pin 7)))
(net (code 102) (name "Net-(COM_SEL1-Pad3)")
(node (ref U8) (pin 13))
(node (ref COM_SEL1) (pin 3)))
(net (code 103) (name "Net-(COM_SEL2-Pad3)")
(node (ref COM_SEL2) (pin 3))
(node (ref U8) (pin 8)))
(net (code 104) (name /inout_user/CAN_L)
(node (ref R38) (pin 1))
(node (ref RCAN1) (pin 2))
(node (ref COM_SEL3) (pin 1))
(node (ref U7) (pin 6)))
(net (code 105) (name /inout_user/TXD2/CANL)
(node (ref COM_SEL3) (pin 2))
(node (ref UARTCAN2) (pin 2)))
(net (code 106) (name /inout_user/RTS1)
(node (ref U5) (pin 7))
(node (ref UARTCAN1) (pin 8)))
(net (code 107) (name /inout_user/RXD1)
(node (ref UARTCAN1) (pin 3))
(node (ref U5) (pin 13)))
(net (code 108) (name /inout_user/TXD1)
(node (ref UARTCAN1) (pin 2))
(node (ref U5) (pin 14)))
(net (code 109) (name "Net-(U8-Pad10)")
(node (ref UART_EN2) (pin 1))
(node (ref U8) (pin 10)))
(net (code 110) (name "Net-(U8-Pad12)")
(node (ref UART_EN2) (pin 7))
(node (ref U8) (pin 12)))
(net (code 111) (name "Net-(UARTCAN2-Pad1)")
(node (ref UARTCAN2) (pin 6))
(node (ref UARTCAN2) (pin 4))
(node (ref UARTCAN2) (pin 1)))
(net (code 112) (name "Net-(C32-Pad1)")
(node (ref C32) (pin 1))
(node (ref U5) (pin 4)))
(net (code 113) (name "Net-(C44-Pad1)")
(node (ref C44) (pin 1))
(node (ref U8) (pin 1)))
(net (code 114) (name "Net-(C35-Pad2)")
(node (ref C35) (pin 2))
(node (ref U8) (pin 2)))
(net (code 115) (name "Net-(C44-Pad2)")
(node (ref C44) (pin 2))
(node (ref U8) (pin 3)))
(net (code 116) (name "Net-(C36-Pad1)")
(node (ref U8) (pin 4))
(node (ref C36) (pin 1)))
(net (code 117) (name "Net-(C36-Pad2)")
(node (ref U8) (pin 5))
(node (ref C36) (pin 2)))
(net (code 118) (name "Net-(LED3-Pad1)")
(node (ref R32) (pin 1))
(node (ref LED3) (pin 1)))
(net (code 119) (name "Net-(R32-Pad2)")
(node (ref R32) (pin 2))
(node (ref U4) (pin 11)))
(net (code 120) (name "Net-(LED2-Pad1)")
(node (ref LED2) (pin 1))
(node (ref R31) (pin 1)))
(net (code 121) (name "Net-(R31-Pad2)")
(node (ref R31) (pin 2))
(node (ref U4) (pin 6)))
(net (code 122) (name "Net-(LED1-Pad1)")
(node (ref R28) (pin 1))
(node (ref LED1) (pin 1)))
(net (code 123) (name "Net-(R28-Pad2)")
(node (ref U4) (pin 3))
(node (ref R28) (pin 2)))
(net (code 124) (name "Net-(R33-Pad2)")
(node (ref U4) (pin 8))
(node (ref R33) (pin 2)))
(net (code 125) (name "Net-(LED_EN1-Pad2)")
(node (ref R34) (pin 2))
(node (ref LED_EN1) (pin 2))
(node (ref U4) (pin 1))
(node (ref U4) (pin 13))
(node (ref U4) (pin 10))
(node (ref U4) (pin 4)))
(net (code 126) (name "Net-(LED4-Pad1)")
(node (ref R33) (pin 1))
(node (ref LED4) (pin 1)))
(net (code 127) (name "Net-(C43-Pad2)")
(node (ref MCU_PORT1) (pin 1))
(node (ref C43) (pin 2))
(node (ref VX_EN1) (pin 2)))
(net (code 128) (name /inout_user/CTS0)
(node (ref UARTCAN0) (pin 7))
(node (ref U3) (pin 8)))
(net (code 129) (name /inout_user/RXD2)
(node (ref COM_SEL2) (pin 2))
(node (ref UARTCAN2) (pin 3)))
(net (code 130) (name "Net-(PULUPEN1-Pad8)")
(node (ref R47) (pin 2))
(node (ref PULUPEN1) (pin 8)))
(net (code 131) (name "Net-(PULUPEN1-Pad4)")
(node (ref PULUPEN1) (pin 4))
(node (ref R49) (pin 2)))
(net (code 132) (name /inout_user/TxD_CAN)
(node (ref U7) (pin 1))
(node (ref CAN_EN1) (pin 3)))
(net (code 133) (name "Net-(R36-Pad1)")
(node (ref R36) (pin 1))
(node (ref U7) (pin 8))
(node (ref RS1) (pin 1)))
(net (code 134) (name "Net-(R23-Pad2)")
(node (ref R23) (pin 2))
(node (ref U8) (pin 11))
(node (ref UART_EN2) (pin 5)))
(net (code 135) (name "Net-(UARTCAN1-Pad1)")
(node (ref UARTCAN1) (pin 6))
(node (ref UARTCAN1) (pin 1))
(node (ref UARTCAN1) (pin 4)))
(net (code 136) (name /inout_user/RTS2)
(node (ref U8) (pin 14))
(node (ref UARTCAN2) (pin 8)))
(net (code 137) (name "Net-(SW_ONOFF1-Pad1)")
(node (ref SW_ONOFF1) (pin 1)))
(net (code 138) (name "Net-(F1-Pad1)")
(node (ref SW_ONOFF1) (pin 2))
(node (ref F1) (pin 1)))
(net (code 139) (name "Net-(J1-Pad3)")
(node (ref J1) (pin 3))
(node (ref TB1) (pin 1))
(node (ref SW_ONOFF1) (pin 3)))
(net (code 140) (name "Net-(C38-Pad1)")
(node (ref C38) (pin 1))
(node (ref VR1) (pin 5))
(node (ref D7) (pin 2))
(node (ref C41) (pin 1))
(node (ref F1) (pin 2)))
(net (code 141) (name "Net-(LED5-Pad1)")
(node (ref R53) (pin 1))
(node (ref LED5) (pin 1)))
(net (code 142) (name "Net-(U7-Pad5)")
(node (ref VREF1) (pin 1))
(node (ref U7) (pin 5)))
(net (code 143) (name "Net-(PULUPEN1-Pad6)")
(node (ref R48) (pin 2))
(node (ref PULUPEN1) (pin 6)))
(net (code 144) (name "Net-(PULUPEN1-Pad2)")
(node (ref R50) (pin 2))
(node (ref PULUPEN1) (pin 2)))
(net (code 145) (name /inout_user/CTS2/CANH)
(node (ref UARTCAN2) (pin 7))
(node (ref COM_SEL1) (pin 2)))
(net (code 146) (name "Net-(U8-Pad9)")
(node (ref UART_EN2) (pin 3))
(node (ref U8) (pin 9)))
(net (code 147) (name "Net-(R30-Pad2)")
(node (ref R30) (pin 2))
(node (ref UART_EN0) (pin 5))
(node (ref U3) (pin 10)))
(net (code 148) (name "Net-(COM_SEL3-Pad3)")
(node (ref COM_SEL3) (pin 3))
(node (ref U8) (pin 7)))
(net (code 149) (name "Net-(CAN_TERM1-Pad2)")
(node (ref R38) (pin 2))
(node (ref CAN_TERM1) (pin 2)))
(net (code 150) (name /inout_user/RxD_CAN)
(node (ref CAN_EN1) (pin 2))
(node (ref U7) (pin 4)))
(net (code 151) (name "Net-(VR1-Pad4)")
(node (ref VR1) (pin 4)))
(net (code 152) (name /xilinx/XIL_D4)
(node (ref P4) (pin 9))
(node (ref U9) (pin 2)))
(net (code 153) (name /xilinx/XIL_D3)
(node (ref P4) (pin 7))
(node (ref U9) (pin 8)))
(net (code 154) (name /xilinx/XIL_D2)
(node (ref U9) (pin 7))
(node (ref P4) (pin 5)))
(net (code 155) (name /xilinx/XIL_D1)
(node (ref P4) (pin 3))
(node (ref U9) (pin 11)))
(net (code 156) (name /xilinx/XIL_D0)
(node (ref U9) (pin 12))
(node (ref P4) (pin 1)))
(net (code 157) (name "Net-(U9-Pad106)")
(node (ref U9) (pin 106)))
(net (code 158) (name /xilinx/XIL_D35)
(node (ref P4) (pin 34))
(node (ref U9) (pin 107)))
(net (code 159) (name "Net-(U9-Pad74)")
(node (ref U9) (pin 74)))
(net (code 160) (name "Net-(U9-Pad66)")
(node (ref U9) (pin 66)))
(net (code 161) (name "Net-(U9-Pad86)")
(node (ref U9) (pin 86)))
(net (code 162) (name "Net-(U9-Pad37)")
(node (ref U9) (pin 37)))
(net (code 163) (name "Net-(U9-Pad56)")
(node (ref U9) (pin 56)))
(net (code 164) (name "Net-(U9-Pad67)")
(node (ref U9) (pin 67)))
(net (code 165) (name "Net-(U9-Pad77)")
(node (ref U9) (pin 77)))
(net (code 166) (name "Net-(U9-Pad87)")
(node (ref U9) (pin 87)))
(net (code 167) (name "Net-(U9-Pad18)")
(node (ref U9) (pin 18)))
(net (code 168) (name "Net-(U9-Pad38)")
(node (ref U9) (pin 38)))
(net (code 169) (name "Net-(U9-Pad75)")
(node (ref U9) (pin 75)))
(net (code 170) (name "Net-(U9-Pad84)")
(node (ref U9) (pin 84)))
(net (code 171) (name "Net-(U9-Pad94)")
(node (ref U9) (pin 94)))
(net (code 172) (name "Net-(U9-Pad15)")
(node (ref U9) (pin 15)))
(net (code 173) (name "Net-(U9-Pad25)")
(node (ref U9) (pin 25)))
(net (code 174) (name "Net-(U9-Pad35)")
(node (ref U9) (pin 35)))
(net (code 175) (name "Net-(U9-Pad55)")
(node (ref U9) (pin 55)))
(net (code 176) (name "Net-(U9-Pad65)")
(node (ref U9) (pin 65)))
(net (code 177) (name "Net-(U9-Pad16)")
(node (ref U9) (pin 16)))
(net (code 178) (name "Net-(U9-Pad26)")
(node (ref U9) (pin 26)))
(net (code 179) (name "Net-(U9-Pad36)")
(node (ref U9) (pin 36)))
(net (code 180) (name "Net-(U9-Pad121)")
(node (ref U9) (pin 121)))
(net (code 181) (name "Net-(U9-Pad141)")
(node (ref U9) (pin 141)))
(net (code 182) (name "Net-(U9-Pad102)")
(node (ref U9) (pin 102)))
(net (code 183) (name "Net-(U9-Pad120)")
(node (ref U9) (pin 120)))
(net (code 184) (name "Net-(U9-Pad103)")
(node (ref U9) (pin 103)))
(net (code 185) (name "Net-(U9-Pad133)")
(node (ref U9) (pin 133)))
(net (code 186) (name "Net-(U9-Pad68)")
(node (ref U9) (pin 68)))
(net (code 187) (name "Net-(U9-Pad78)")
(node (ref U9) (pin 78)))
(net (code 188) (name "Net-(U9-Pad88)")
(node (ref U9) (pin 88)))
(net (code 189) (name "Net-(U9-Pad19)")
(node (ref U9) (pin 19)))
(net (code 190) (name "Net-(U9-Pad29)")
(node (ref U9) (pin 29)))
(net (code 191) (name "Net-(U9-Pad39)")
(node (ref U9) (pin 39)))
(net (code 192) (name /xilinx/XIL_D5)
(node (ref U9) (pin 143))
(node (ref P4) (pin 11)))
(net (code 193) (name "Net-(U9-Pad69)")
(node (ref U9) (pin 69)))
(net (code 194) (name "Net-(U9-Pad79)")
(node (ref U9) (pin 79)))
(net (code 195) (name "Net-(U9-Pad110)")
(node (ref U9) (pin 110)))
(net (code 196) (name "Net-(D8-Pad1)")
(node (ref R62) (pin 2))
(node (ref D8) (pin 1)))
(net (code 197) (name /xilinx/TCK)
(node (ref P1) (pin 5))
(node (ref U9) (pin 89))
(node (ref R57) (pin 2)))
(net (code 198) (name /xilinx/LED_TEST1)
(node (ref U9) (pin 28))
(node (ref R62) (pin 1)))
(net (code 199) (name /xilinx/TDO)
(node (ref P1) (pin 6))
(node (ref U9) (pin 104)))
(net (code 200) (name /xilinx/TDI)
(node (ref U9) (pin 4))
(node (ref P1) (pin 4)))
(net (code 201) (name /xilinx/LED_TEST2)
(node (ref R63) (pin 1))
(node (ref U9) (pin 27)))
(net (code 202) (name "Net-(D9-Pad1)")
(node (ref D9) (pin 1))
(node (ref R63) (pin 2)))
(net (code 203) (name /xilinx/TMS)
(node (ref P1) (pin 3))
(node (ref U9) (pin 20)))
(net (code 204) (name /xilinx/XIL_D20)
(node (ref U9) (pin 6))
(node (ref P4) (pin 4)))
(net (code 205) (name /xilinx/XIL_D21)
(node (ref U9) (pin 10))
(node (ref P4) (pin 6)))
(net (code 206) (name /xilinx/XIL_D22)
(node (ref U9) (pin 5))
(node (ref P4) (pin 8)))
(net (code 207) (name /xilinx/+3,3V_OUT)
(node (ref P4) (pin 38))
(node (ref R64) (pin 2)))
(net (code 208) (name /xilinx/XIL_D17)
(node (ref U9) (pin 101))
(node (ref P4) (pin 35)))
(net (code 209) (name /xilinx/XIL_D26)
(node (ref P4) (pin 16))
(node (ref U9) (pin 137)))
(net (code 210) (name /xilinx/XIL_D31)
(node (ref U9) (pin 116))
(node (ref P4) (pin 26)))
(net (code 211) (name /xilinx/XIL_D36)
(node (ref P4) (pin 36))
(node (ref U9) (pin 99)))
(net (code 212) (name /xilinx/XIL_D8)
(node (ref P4) (pin 17))
(node (ref U9) (pin 136)))
(net (code 213) (name /xilinx/XIL_D13)
(node (ref P4) (pin 27))
(node (ref U9) (pin 111)))
(net (code 214) (name /xilinx/XIL_D18)
(node (ref P4) (pin 37))
(node (ref U9) (pin 97)))
(net (code 215) (name /xilinx/XIL_D27)
(node (ref P4) (pin 18))
(node (ref U9) (pin 134)))
(net (code 216) (name /xilinx/XIL_D32)
(node (ref P4) (pin 28))
(node (ref U9) (pin 98)))
(net (code 217) (name /xilinx/XIL_D12)
(node (ref U9) (pin 114))
(node (ref P4) (pin 25)))
(net (code 218) (name /xilinx/XIL_D9)
(node (ref P4) (pin 19))
(node (ref U9) (pin 131)))
(net (code 219) (name /xilinx/XIL_D14)
(node (ref P4) (pin 29))
(node (ref U9) (pin 109)))
(net (code 220) (name /xilinx/XIL_D19)
(node (ref U9) (pin 96))
(node (ref P4) (pin 39)))
(net (code 221) (name /xilinx/XIL_D29)
(node (ref P4) (pin 22))
(node (ref U9) (pin 117)))
(net (code 222) (name /xilinx/XIL_D23)
(node (ref U9) (pin 1))
(node (ref P4) (pin 10)))
(net (code 223) (name /xilinx/XIL_D28)
(node (ref U9) (pin 132))
(node (ref P4) (pin 20)))
(net (code 224) (name /xilinx/XIL_D33)
(node (ref P4) (pin 30))
(node (ref U9) (pin 112)))
(net (code 225) (name /xilinx/XIL_D10)
(node (ref P4) (pin 21))
(node (ref U9) (pin 122)))
(net (code 226) (name /xilinx/XIL_D15)
(node (ref P4) (pin 31))
(node (ref U9) (pin 108)))
(net (code 227) (name /xilinx/XIL_D24)
(node (ref P4) (pin 12))
(node (ref U9) (pin 142)))
(net (code 228) (name /xilinx/XIL_D34)
(node (ref P4) (pin 32))
(node (ref U9) (pin 113)))
(net (code 229) (name /xilinx/XIL_D6)
(node (ref P4) (pin 13))
(node (ref U9) (pin 140)))
(net (code 230) (name /xilinx/XIL_D11)
(node (ref U9) (pin 119))
(node (ref P4) (pin 23)))
(net (code 231) (name /xilinx/XIL_D16)
(node (ref P4) (pin 33))
(node (ref U9) (pin 100)))
(net (code 232) (name /xilinx/XIL_D25)
(node (ref U9) (pin 139))
(node (ref P4) (pin 14)))
(net (code 233) (name /xilinx/XIL_D30)
(node (ref U9) (pin 118))
(node (ref P4) (pin 24)))
(net (code 234) (name /xilinx/XIL_D7)
(node (ref U9) (pin 138))
(node (ref P4) (pin 15)))
(net (code 235) (name "Net-(P3-Pad4)")
(node (ref P3) (pin 4))
(node (ref U9) (pin 31)))
(net (code 236) (name "Net-(U9-Pad90)")
(node (ref U9) (pin 90)))
(net (code 237) (name "Net-(U9-Pad91)")
(node (ref U9) (pin 91)))
(net (code 238) (name "Net-(U9-Pad92)")
(node (ref U9) (pin 92)))
(net (code 239) (name "Net-(U9-Pad93)")
(node (ref U9) (pin 93)))
(net (code 240) (name "Net-(U9-Pad9)")
(node (ref U9) (pin 9)))
(net (code 241) (name "Net-(U9-Pad30)")
(node (ref U9) (pin 30)))
(net (code 242) (name "Net-(U9-Pad40)")
(node (ref U9) (pin 40)))
(net (code 243) (name "Net-(U9-Pad60)")
(node (ref U9) (pin 60)))
(net (code 244) (name "Net-(U9-Pad70)")
(node (ref U9) (pin 70)))
(net (code 245) (name "Net-(U9-Pad80)")
(node (ref U9) (pin 80)))
(net (code 246) (name "Net-(U9-Pad62)")
(node (ref U9) (pin 62)))
(net (code 247) (name "Net-(U9-Pad61)")
(node (ref U9) (pin 61)))
(net (code 248) (name "Net-(U9-Pad23)")
(node (ref U9) (pin 23)))
(net (code 249) (name "Net-(U9-Pad63)")
(node (ref U9) (pin 63)))
(net (code 250) (name "Net-(U9-Pad82)")
(node (ref U9) (pin 82)))
(net (code 251) (name "Net-(U9-Pad83)")
(node (ref U9) (pin 83)))
(net (code 252) (name "Net-(U9-Pad14)")
(node (ref U9) (pin 14)))
(net (code 253) (name "Net-(U9-Pad34)")
(node (ref U9) (pin 34)))
(net (code 254) (name "Net-(U9-Pad21)")
(node (ref U9) (pin 21)))
(net (code 255) (name "Net-(U9-Pad41)")
(node (ref U9) (pin 41)))
(net (code 256) (name "Net-(U9-Pad71)")
(node (ref U9) (pin 71)))
(net (code 257) (name "Net-(U9-Pad81)")
(node (ref U9) (pin 81)))
(net (code 258) (name "Net-(U9-Pad22)")
(node (ref U9) (pin 22)))
(net (code 259) (name "Net-(P3-Pad2)")
(node (ref U9) (pin 32))
(node (ref P3) (pin 2)))
(net (code 260) (name "Net-(U9-Pad72)")
(node (ref U9) (pin 72)))
(net (code 261) (name /AN7)
(node (ref U1) (pin 51))
(node (ref MCU_PORT1) (pin 24)))
(net (code 263) (name /xilinx/IRQ-1)
(node (ref U1) (pin 87))
(node (ref MCU_PORT1) (pin 2))
(node (ref U9) (pin 42))
(node (ref R4) (pin 1)))
(net (code 264) (name /xilinx/IRQ-2)
(node (ref U9) (pin 43))
(node (ref U1) (pin 88))
(node (ref MCU_PORT1) (pin 8))
(node (ref R5) (pin 1)))
(net (code 265) (name /xilinx/IRQ-3)
(node (ref U1) (pin 89))
(node (ref U9) (pin 44))
(node (ref R6) (pin 1))
(node (ref MCU_PORT1) (pin 31)))
(net (code 266) (name /IRQ-4)
(node (ref MCU_PORT1) (pin 33))
(node (ref U1) (pin 90))
(node (ref SW1) (pin 1))
(node (ref R8) (pin 1)))
(net (code 267) (name /IRQ-5)
(node (ref SW2) (pin 1))
(node (ref R10) (pin 1))
(node (ref MCU_PORT1) (pin 35))
(node (ref U1) (pin 91)))
(net (code 268) (name /IRQ-6)
(node (ref MCU_PORT1) (pin 37))
(node (ref U1) (pin 94))
(node (ref R11) (pin 1)))
(net (code 269) (name /AN6)
(node (ref U1) (pin 52))
(node (ref MCU_PORT1) (pin 22)))
(net (code 270) (name /DTIN0)
(node (ref U1) (pin 36))
(node (ref U4) (pin 2))
(node (ref MCU_PORT1) (pin 34)))
(net (code 271) (name /DTIN1)
(node (ref MCU_PORT1) (pin 36))
(node (ref U1) (pin 37))
(node (ref U4) (pin 5)))
(net (code 272) (name /DTIN2)
(node (ref U4) (pin 12))
(node (ref MCU_PORT1) (pin 38))
(node (ref U1) (pin 31)))
(net (code 273) (name /DTIN3)
(node (ref U4) (pin 9))
(node (ref U1) (pin 32))
(node (ref MCU_PORT1) (pin 40)))
(net (code 274) (name /AN0)
(node (ref U1) (pin 43))
(node (ref MCU_PORT1) (pin 10)))
(net (code 275) (name /AN1)
(node (ref MCU_PORT1) (pin 12))
(node (ref U1) (pin 44)))
(net (code 276) (name /AN2)
(node (ref MCU_PORT1) (pin 14))
(node (ref U1) (pin 45)))
(net (code 277) (name /AN3)
(node (ref MCU_PORT1) (pin 16))
(node (ref U1) (pin 46)))
(net (code 278) (name /AN4)
(node (ref U1) (pin 54))
(node (ref MCU_PORT1) (pin 18)))
(net (code 279) (name /AN5)
(node (ref U1) (pin 53))
(node (ref MCU_PORT1) (pin 20)))))
|