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
|
(export (version D)
(design
(source /home/yhetti/hackrf/hardware/operacake/operacake.sch)
(date "Wed 18 Oct 2017 01:41:42 PM MDT")
(tool "Eeschema 4.0.5+dfsg1-4")
(sheet (number 1) (name /) (tstamps /)
(title_block
(title "Opera Cake")
(company "Copyright 2016 Great Scott Gadgets")
(rev)
(date 2016-10-04)
(source operacake.sch)
(comment (number 1) (value "License: GPL v2"))
(comment (number 2) (value ""))
(comment (number 3) (value ""))
(comment (number 4) (value "")))))
(components
(comp (ref MH1)
(value MOUNTING_HOLE)
(footprint gsg-modules:HOLE126MIL-COPPER)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57ED05B1))
(comp (ref MH2)
(value MOUNTING_HOLE)
(footprint gsg-modules:HOLE126MIL-COPPER)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57ED05C0))
(comp (ref MH3)
(value MOUNTING_HOLE)
(footprint gsg-modules:HOLE126MIL-COPPER)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57ED05CF))
(comp (ref MH4)
(value MOUNTING_HOLE)
(footprint gsg-modules:HOLE126MIL-COPPER)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57ED05DE))
(comp (ref MH5)
(value MOUNTING_HOLE)
(footprint gsg-modules:HOLE126MIL-COPPER)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57ED05ED))
(comp (ref MH6)
(value MOUNTING_HOLE)
(footprint gsg-modules:HOLE126MIL-COPPER)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57ED05FC))
(comp (ref P28)
(value SD)
(footprint gsg-modules:HEADER-2x11)
(fields
(field (name Note) DNP))
(libsource (lib conn) (part CONN_02X11))
(sheetpath (names /) (tstamps /))
(tstamp 57ED4286))
(comp (ref P22)
(value I2S)
(footprint gsg-modules:HEADER-2x13)
(libsource (lib conn) (part CONN_02X13))
(sheetpath (names /) (tstamps /))
(tstamp 57ED42B3))
(comp (ref PA0)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57ECF74E))
(comp (ref D9)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57ECF9D2))
(comp (ref C11)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57ECFA66))
(comp (ref U2)
(value SKY13322)
(footprint gsg-modules:SKY13322-375LF)
(fields
(field (name Manufacturer) Skyworks)
(field (name "Part Number") SKY13322-375LF)
(field (name Description) "IC SWITCH SP4T 0.1-6GHZ 10MLPD"))
(libsource (lib gsg-symbols) (part SKY13322))
(sheetpath (names /) (tstamps /))
(tstamp 57ED2FAA))
(comp (ref PA2)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57ED4209))
(comp (ref D1)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57ED4219))
(comp (ref C1)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57ED4222))
(comp (ref PB0)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57ED723D))
(comp (ref D10)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57ED724C))
(comp (ref C12)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57ED7255))
(comp (ref U1)
(value MASWSS0129)
(footprint gsg-modules:QFN12-3)
(fields
(field (name Manufacturer) M/A-Com)
(field (name "Part Number") MASWSS0129TR-3000)
(field (name Description) "DPDT LEAD FREE SWITCH DC - 6GHZ"))
(libsource (lib gsg-symbols) (part MASWSS0129))
(sheetpath (names /) (tstamps /))
(tstamp 57ED7D40))
(comp (ref C9)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EDB85B))
(comp (ref C10)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EDC2D6))
(comp (ref PA1)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57EF0A3B))
(comp (ref D5)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57EF0A4A))
(comp (ref C5)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EF0A53))
(comp (ref PA4)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57EF11AC))
(comp (ref D2)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57EF11BB))
(comp (ref C2)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EF11C4))
(comp (ref PA3)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57EF11DB))
(comp (ref D6)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57EF11EA))
(comp (ref C6)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EF11F3))
(comp (ref PB2)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B1D))
(comp (ref D3)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B2C))
(comp (ref C3)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B35))
(comp (ref PB1)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B4D))
(comp (ref D7)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B5C))
(comp (ref C7)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B65))
(comp (ref PB4)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B7B))
(comp (ref D4)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B8A))
(comp (ref C4)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1B93))
(comp (ref PB3)
(value GSG-RF-CONN)
(footprint hackrf:GSG-SMA-73251-2120)
(fields
(field (name Manufacturer) Molex)
(field (name "Part Number") 73251-2121)
(field (name Description) "CONN SMA JACK 50 OHM EDGE MNT W/JAM NUT & LOCK WASHER"))
(libsource (lib hackrf) (part GSG-RF-CONN))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1BAA))
(comp (ref D8)
(value GSG-DIODE-TVS-BI)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") LXES15AAA1-153)
(field (name Description) "TVS DIODE 4VWM 0402"))
(libsource (lib hackrf) (part GSG-DIODE-TVS-BI))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1BB9))
(comp (ref C8)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1BC2))
(comp (ref U8)
(value 74AHC1G08)
(footprint gsg-modules:SOT353-1)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74AHC1G08SE-7)
(field (name Description) "AND Gate IC 1 Channel SOT-353"))
(libsource (lib gsg-symbols) (part 74AHC1G08))
(sheetpath (names /) (tstamps /))
(tstamp 57EEFD9C))
(comp (ref U14)
(value 74AHC1G02)
(footprint gsg-modules:SOT353-1)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74AHC1G02SE-7)
(field (name Description) "NOR Gate IC 1 Channel SOT-353"))
(libsource (lib gsg-symbols) (part 74AHC1G08))
(sheetpath (names /) (tstamps /))
(tstamp 57EEFEA7))
(comp (ref U16)
(value 74LVC1G19)
(footprint gsg-modules:SOT363)
(fields
(field (name Manufacturer) NXP)
(field (name "Part Number") 74LVC1G19GW,125)
(field (name Description) "Decoder/Demultiplexer 1 x 1:2 6-TSSOP"))
(libsource (lib gsg-symbols) (part 74LVC1G19))
(sheetpath (names /) (tstamps /))
(tstamp 57EEFF63))
(comp (ref U10)
(value 74LVC1G58)
(footprint gsg-modules:SOT363)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74LVC1G58DW-7)
(field (name Description) "IC CONFIG MULT-FUNC GATE SOT363"))
(libsource (lib gsg-symbols) (part 74LVC1G58))
(sheetpath (names /) (tstamps /))
(tstamp 57EF011E))
(comp (ref U3)
(value SKY13322)
(footprint gsg-modules:SKY13322-375LF)
(fields
(field (name Manufacturer) Skyworks)
(field (name "Part Number") SKY13322-375LF)
(field (name Description) "IC SWITCH SP4T 0.1-6GHZ 10MLPD"))
(libsource (lib gsg-symbols) (part SKY13322))
(sheetpath (names /) (tstamps /))
(tstamp 57EF1C07))
(comp (ref U12)
(value 74LVC1G58)
(footprint gsg-modules:SOT363)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74LVC1G58DW-7)
(field (name Description) "IC CONFIG MULT-FUNC GATE SOT363"))
(libsource (lib gsg-symbols) (part 74LVC1G58))
(sheetpath (names /) (tstamps /))
(tstamp 57EF3F5A))
(comp (ref U9)
(value 74AHC1G08)
(footprint gsg-modules:SOT353-1)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74AHC1G08SE-7)
(field (name Description) "AND Gate IC 1 Channel SOT-353"))
(libsource (lib gsg-symbols) (part 74AHC1G08))
(sheetpath (names /) (tstamps /))
(tstamp 57EF9417))
(comp (ref U15)
(value 74AHC1G02)
(footprint gsg-modules:SOT353-1)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74AHC1G02SE-7)
(field (name Description) "NOR Gate IC 1 Channel SOT-353"))
(libsource (lib gsg-symbols) (part 74AHC1G08))
(sheetpath (names /) (tstamps /))
(tstamp 57EF9420))
(comp (ref U11)
(value 74LVC1G58)
(footprint gsg-modules:SOT363)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74LVC1G58DW-7)
(field (name Description) "IC CONFIG MULT-FUNC GATE SOT363"))
(libsource (lib gsg-symbols) (part 74LVC1G58))
(sheetpath (names /) (tstamps /))
(tstamp 57EF9429))
(comp (ref U13)
(value 74LVC1G58)
(footprint gsg-modules:SOT363)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74LVC1G58DW-7)
(field (name Description) "IC CONFIG MULT-FUNC GATE SOT363"))
(libsource (lib gsg-symbols) (part 74LVC1G58))
(sheetpath (names /) (tstamps /))
(tstamp 57EF9432))
(comp (ref DAG2)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57EFE38F))
(comp (ref DAY2)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F0174D))
(comp (ref R1)
(value 330)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Stackpole)
(field (name "Part Number") RMCF0603JT330R)
(field (name Description) "RES 330 OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F026AD))
(comp (ref DAG3)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F0CF06))
(comp (ref DAY3)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F0CF0F))
(comp (ref R3)
(value 330)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Stackpole)
(field (name "Part Number") RMCF0603JT330R)
(field (name Description) "RES 330 OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F0E70A))
(comp (ref DAG1)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F0F080))
(comp (ref DAY1)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F0F08A))
(comp (ref DAG4)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F0F09A))
(comp (ref DAY4)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F0F0A3))
(comp (ref DBG2)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F102B1))
(comp (ref DBY2)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F102BB))
(comp (ref DBG3)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F102CF))
(comp (ref DBY3)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F102D8))
(comp (ref DBG1)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F102E7))
(comp (ref DBY1)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F102F1))
(comp (ref DBG4)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F10301))
(comp (ref DBY4)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F1030A))
(comp (ref R4)
(value 330)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Stackpole)
(field (name "Part Number") RMCF0603JT330R)
(field (name Description) "RES 330 OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F12932))
(comp (ref R2)
(value 330)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Stackpole)
(field (name "Part Number") RMCF0603JT330R)
(field (name Description) "RES 330 OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F1320C))
(comp (ref DA0)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603GW-TR)
(field (name Description) "LED GREEN DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F14A76))
(comp (ref DB0)
(value LED)
(footprint gsg-modules:0603D)
(fields
(field (name Manufacturer) Lumex)
(field (name "Part Number") SML-LX0603YW-TR)
(field (name Description) "LED YELLOW DIFFUSED 0603 SMD"))
(libsource (lib device) (part LED))
(sheetpath (names /) (tstamps /))
(tstamp 57F14A80))
(comp (ref R5)
(value 330)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Stackpole)
(field (name "Part Number") RMCF0603JT330R)
(field (name Description) "RES 330 OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F1ECB2))
(comp (ref R6)
(value 330)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Stackpole)
(field (name "Part Number") RMCF0603JT330R)
(field (name Description) "RES 330 OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F1EEC6))
(comp (ref U5)
(value TC7MBL3245CFT)
(footprint gsg-modules:TSSOP20)
(fields
(field (name Manufacturer) Toshiba)
(field (name "Part Number") "TC7MBL3245CFT(EL)")
(field (name Description) "Bus Switch 8 x 1:1 20-TSSOP"))
(libsource (lib gsg-symbols) (part TC7MBL3245CFT))
(sheetpath (names /) (tstamps /))
(tstamp 57F25F57))
(comp (ref R17)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F381DD))
(comp (ref U4)
(value PCA9557)
(footprint gsg-modules:TSSOP16)
(fields
(field (name Manufacturer) NXP)
(field (name "Part Number") PCA9557PW,118)
(field (name Description) "I/O Expander 8 I²C, SMBus 400kHz 16-TSSOP"))
(libsource (lib gsg-symbols) (part PCA9557))
(sheetpath (names /) (tstamps /))
(tstamp 57F3AE6E))
(comp (ref R8)
(value 1k8)
(footprint gsg-modules:0603)
(fields
(field (name Note) DNP))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F3B290))
(comp (ref R7)
(value 1k8)
(footprint gsg-modules:0603)
(fields
(field (name Note) DNP))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F3BCDF))
(comp (ref R10)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F3C15B))
(comp (ref R18)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F40B96))
(comp (ref R19)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F40CBA))
(comp (ref R9)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F40DD9))
(comp (ref R11)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F42B49))
(comp (ref R12)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F4A26A))
(comp (ref R13)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F4A395))
(comp (ref R14)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F4A4C3))
(comp (ref R15)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F4A5F4))
(comp (ref R16)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57F4A728))
(comp (ref P20)
(value GPIO)
(footprint gsg-modules:HEADER-2x11)
(libsource (lib conn) (part CONN_02X11))
(sheetpath (names /) (tstamps /))
(tstamp 57ED4267))
(comp (ref P1)
(value ADDRESS)
(footprint gsg-modules:HEADER-2x3)
(libsource (lib conn) (part CONN_02X03))
(sheetpath (names /) (tstamps /))
(tstamp 57F62B3E))
(comp (ref P9)
(value BASEBAND)
(footprint gsg-modules:HEADER-2x8)
(fields
(field (name Note) DNP))
(libsource (lib conn) (part CONN_02X08))
(sheetpath (names /) (tstamps /))
(tstamp 57F6C362))
(comp (ref TP1)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57F84F6A))
(comp (ref TP2)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB8DBC))
(comp (ref TP3)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB8F08))
(comp (ref TP4)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9051))
(comp (ref TP5)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9269))
(comp (ref TP6)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9270))
(comp (ref TP7)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9277))
(comp (ref TP8)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB927E))
(comp (ref TP9)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9595))
(comp (ref TP10)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB959C))
(comp (ref TP11)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB95A3))
(comp (ref TP12)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB95AA))
(comp (ref TP13)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB95B1))
(comp (ref TP14)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB95B8))
(comp (ref TP15)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB95BF))
(comp (ref TP16)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E1D))
(comp (ref TP17)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E24))
(comp (ref TP18)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E2B))
(comp (ref TP19)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E32))
(comp (ref TP20)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E39))
(comp (ref TP21)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E40))
(comp (ref TP22)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E47))
(comp (ref TP23)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E4E))
(comp (ref TP24)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E55))
(comp (ref TP25)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E5C))
(comp (ref TP26)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E63))
(comp (ref TP27)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E6A))
(comp (ref TP28)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E71))
(comp (ref TP29)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E78))
(comp (ref TP30)
(value CONN_1)
(footprint gsg-modules:TESTPOINT-50MIL)
(fields
(field (name Note) DNP))
(libsource (lib operacake-cache) (part CONN_1))
(sheetpath (names /) (tstamps /))
(tstamp 57FB9E7F))
(comp (ref R20)
(value 10k)
(footprint gsg-modules:0603)
(fields
(field (name Manufacturer) Panasonic)
(field (name "Part Number") ERJ-3GEYJ103V)
(field (name Description) "RES 10K OHM 1/10W 5% 0603 SMD"))
(libsource (lib device) (part R))
(sheetpath (names /) (tstamps /))
(tstamp 57FC84C7))
(comp (ref U6)
(value 74LVC1G58)
(footprint gsg-modules:SOT363)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74LVC1G58DW-7)
(field (name Description) "IC CONFIG MULT-FUNC GATE SOT363"))
(libsource (lib gsg-symbols) (part 74LVC1G58))
(sheetpath (names /) (tstamps /))
(tstamp 57FC9246))
(comp (ref U7)
(value 74LVC1G58)
(footprint gsg-modules:SOT363)
(fields
(field (name Manufacturer) "Diodes Inc.")
(field (name "Part Number") 74LVC1G58DW-7)
(field (name Description) "IC CONFIG MULT-FUNC GATE SOT363"))
(libsource (lib gsg-symbols) (part 74LVC1G58))
(sheetpath (names /) (tstamps /))
(tstamp 57FCC959))
(comp (ref J1)
(value CONN_02X20)
(footprint gsg-modules:HEADER-2x20-REVERSE)
(fields
(field (name Note) DNP))
(libsource (lib conn) (part CONN_02X20))
(sheetpath (names /) (tstamps /))
(tstamp 57FD1FB9))
(comp (ref J2)
(value CONN_02X20)
(footprint gsg-modules:HEADER-2x20-REVERSE)
(fields
(field (name Note) DNP))
(libsource (lib conn) (part CONN_02X20))
(sheetpath (names /) (tstamps /))
(tstamp 57FD53EC))
(comp (ref C20)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59501F48))
(comp (ref C21)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 595027F2))
(comp (ref C22)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59503203))
(comp (ref C19)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59503551))
(comp (ref C17)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59504505))
(comp (ref C18)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59504CB0))
(comp (ref C13)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5950597B))
(comp (ref C16)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59505F07))
(comp (ref C15)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59506764))
(comp (ref C14)
(value 33pF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM1555C1H330JA01D)
(field (name Description) "CAP CER 33PF 50V 5% NP0 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59506EAE))
(comp (ref C23)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5950507B))
(comp (ref C28)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 595064F7))
(comp (ref C29)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5950C936))
(comp (ref C24)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5950ECBD))
(comp (ref C25)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5950F8F8))
(comp (ref C30)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 595103E6))
(comp (ref C26)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5951F244))
(comp (ref C31)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5951FCE0))
(comp (ref C32)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5951FEC9))
(comp (ref C27)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 595200CF))
(comp (ref C33)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 5953EF33))
(comp (ref C34)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59D87D2E))
(comp (ref C35)
(value 100nF)
(footprint gsg-modules:0402)
(fields
(field (name Manufacturer) Murata)
(field (name "Part Number") GRM155R61A104KA01D)
(field (name Description) "CAP CER 0.1UF 10V 10% X5R 0402"))
(libsource (lib device) (part C))
(sheetpath (names /) (tstamps /))
(tstamp 59D88437)))
(libparts
(libpart (lib gsg-symbols) (part 74AHC1G08)
(fields
(field (name Reference) U)
(field (name Value) 74AHC1G08))
(pins
(pin (num 1) (name A) (type input))
(pin (num 2) (name B) (type input))
(pin (num 3) (name GND) (type power_in))
(pin (num 4) (name Y) (type output))
(pin (num 5) (name VCC) (type power_in))))
(libpart (lib gsg-symbols) (part 74LVC1G19)
(fields
(field (name Reference) U)
(field (name Value) 74LVC1G19))
(pins
(pin (num 1) (name A) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name E) (type input))
(pin (num 4) (name 2Y) (type output))
(pin (num 5) (name VCC) (type power_in))
(pin (num 6) (name 1Y) (type output))))
(libpart (lib gsg-symbols) (part 74LVC1G58)
(fields
(field (name Reference) U)
(field (name Value) 74LVC1G58))
(pins
(pin (num 1) (name IN1) (type input))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name IN0) (type input))
(pin (num 4) (name Y) (type output))
(pin (num 5) (name VCC) (type power_in))
(pin (num 6) (name IN2) (type input))))
(libpart (lib device) (part C)
(description "Unpolarized capacitor")
(footprints
(fp C?)
(fp C_????_*)
(fp C_????)
(fp SMD*_c)
(fp Capacitor*))
(fields
(field (name Reference) C)
(field (name Value) C))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib conn) (part CONN_02X03)
(description "Connector, double row, 02x03")
(footprints
(fp Pin_Header_Straight_2X03)
(fp Pin_Header_Angled_2X03)
(fp Socket_Strip_Straight_2X03)
(fp Socket_Strip_Angled_2X03))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X03))
(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))))
(libpart (lib conn) (part CONN_02X08)
(description "Connector, double row, 02x08")
(footprints
(fp Pin_Header_Straight_2X08)
(fp Pin_Header_Angled_2X08)
(fp Socket_Strip_Straight_2X08)
(fp Socket_Strip_Angled_2X08))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X08))
(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))))
(libpart (lib conn) (part CONN_02X11)
(description "Connector, double row, 02x11")
(footprints
(fp Pin_Header_Straight_2X11)
(fp Pin_Header_Angled_2X11)
(fp Socket_Strip_Straight_2X11)
(fp Socket_Strip_Angled_2X11))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X11))
(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))))
(libpart (lib conn) (part CONN_02X13)
(description "Connector, double row, 02x13")
(footprints
(fp Pin_Header_Straight_2X13)
(fp Pin_Header_Angled_2X13)
(fp Socket_Strip_Straight_2X13)
(fp Socket_Strip_Angled_2X13))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X13))
(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 P25) (type passive))
(pin (num 26) (name P26) (type passive))))
(libpart (lib conn) (part CONN_02X20)
(description "Connector, double row, 02x20")
(footprints
(fp Pin_Header_Straight_2X20)
(fp Pin_Header_Angled_2X20)
(fp Socket_Strip_Straight_2X20)
(fp Socket_Strip_Angled_2X20))
(fields
(field (name Reference) P)
(field (name Value) CONN_02X20))
(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 P25) (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 operacake-cache) (part CONN_1)
(fields
(field (name Reference) P)
(field (name Value) CONN_1))
(pins
(pin (num 1) (name 1) (type passive))))
(libpart (lib hackrf) (part GSG-DIODE-TVS-BI)
(description "Diode zener")
(footprints
(fp D?)
(fp SO*)
(fp SM*))
(fields
(field (name Reference) D)
(field (name Value) GSG-DIODE-TVS-BI))
(pins
(pin (num 1) (name A) (type passive))
(pin (num 2) (name K) (type passive))))
(libpart (lib hackrf) (part GSG-RF-CONN)
(fields
(field (name Reference) P)
(field (name Value) GSG-RF-CONN))
(pins
(pin (num 1) (name RF) (type BiDi))
(pin (num 2) (name GND) (type power_in))))
(libpart (lib device) (part LED)
(description "LED generic")
(footprints
(fp LED*))
(fields
(field (name Reference) D)
(field (name Value) LED))
(pins
(pin (num 1) (name K) (type passive))
(pin (num 2) (name A) (type passive))))
(libpart (lib gsg-symbols) (part MASWSS0129)
(fields
(field (name Reference) U)
(field (name Value) MASWSS0129))
(pins
(pin (num 0) (name GND) (type power_in))
(pin (num 1) (name GND) (type power_in))
(pin (num 2) (name GND) (type power_in))
(pin (num 3) (name VC1) (type input))
(pin (num 4) (name ANT1) (type BiDi))
(pin (num 5) (name GND) (type power_in))
(pin (num 6) (name ANT2) (type BiDi))
(pin (num 7) (name VC2) (type input))
(pin (num 8) (name GND) (type power_in))
(pin (num 9) (name GND) (type power_in))
(pin (num 10) (name RX) (type BiDi))
(pin (num 11) (name GND) (type power_in))
(pin (num 12) (name TX) (type BiDi))))
(libpart (lib gsg-symbols) (part PCA9557)
(fields
(field (name Reference) U)
(field (name Value) PCA9557))
(pins
(pin (num 1) (name SCL) (type BiDi))
(pin (num 2) (name SDA) (type BiDi))
(pin (num 3) (name A0) (type input))
(pin (num 4) (name A1) (type input))
(pin (num 5) (name A2) (type input))
(pin (num 6) (name IO0) (type BiDi))
(pin (num 7) (name IO1) (type BiDi))
(pin (num 8) (name VSS) (type power_in))
(pin (num 9) (name IO2) (type BiDi))
(pin (num 10) (name IO3) (type BiDi))
(pin (num 11) (name IO4) (type BiDi))
(pin (num 12) (name IO5) (type BiDi))
(pin (num 13) (name IO6) (type BiDi))
(pin (num 14) (name IO7) (type BiDi))
(pin (num 15) (name !RESET) (type input))
(pin (num 16) (name VDD) (type power_in))))
(libpart (lib device) (part R)
(description Resistor)
(footprints
(fp R_*)
(fp Resistor_*))
(fields
(field (name Reference) R)
(field (name Value) R))
(pins
(pin (num 1) (name ~) (type passive))
(pin (num 2) (name ~) (type passive))))
(libpart (lib gsg-symbols) (part SKY13322)
(fields
(field (name Reference) U)
(field (name Value) SKY13322))
(pins
(pin (num 0) (name GND) (type power_in))
(pin (num 1) (name J2) (type BiDi))
(pin (num 2) (name V2) (type input))
(pin (num 3) (name NC) (type NotConnected))
(pin (num 4) (name V1) (type input))
(pin (num 5) (name J1) (type BiDi))
(pin (num 6) (name J3) (type BiDi))
(pin (num 7) (name V3) (type input))
(pin (num 8) (name RFC) (type BiDi))
(pin (num 9) (name V4) (type input))
(pin (num 10) (name J4) (type BiDi))))
(libpart (lib gsg-symbols) (part TC7MBL3245CFT)
(fields
(field (name Reference) U)
(field (name Value) TC7MBL3245CFT))
(pins
(pin (num 1) (name NC) (type NotConnected))
(pin (num 2) (name A1) (type BiDi))
(pin (num 3) (name A2) (type BiDi))
(pin (num 4) (name A3) (type BiDi))
(pin (num 5) (name A4) (type BiDi))
(pin (num 6) (name A5) (type BiDi))
(pin (num 7) (name A6) (type BiDi))
(pin (num 8) (name A7) (type BiDi))
(pin (num 9) (name A8) (type BiDi))
(pin (num 10) (name GND) (type power_in))
(pin (num 11) (name B8) (type BiDi))
(pin (num 12) (name B7) (type BiDi))
(pin (num 13) (name B6) (type BiDi))
(pin (num 14) (name B5) (type BiDi))
(pin (num 15) (name B4) (type BiDi))
(pin (num 16) (name B3) (type BiDi))
(pin (num 17) (name B2) (type BiDi))
(pin (num 18) (name B1) (type BiDi))
(pin (num 19) (name !OE) (type input))
(pin (num 20) (name VCC) (type power_in)))))
(libraries
(library (logical device)
(uri /usr/share/kicad/library/device.lib))
(library (logical hackrf)
(uri /home/yhetti/hackrf/hardware/kicad/hackrf.lib))
(library (logical gsg-symbols)
(uri /home/yhetti/hackrf/hardware/gsg-kicad-lib/gsg-symbols.lib))
(library (logical conn)
(uri /usr/share/kicad/library/conn.lib))
(library (logical operacake-cache)
(uri /home/yhetti/hackrf/hardware/operacake/operacake-cache.lib)))
(nets
(net (code 1) (name /U3CTRL1)
(node (ref U5) (pin 16))
(node (ref TP13) (pin 1))
(node (ref U4) (pin 11))
(node (ref R14) (pin 1))
(node (ref U9) (pin 1))
(node (ref U15) (pin 1))
(node (ref U13) (pin 1))
(node (ref U11) (pin 6)))
(net (code 2) (name GND)
(node (ref MH5) (pin 1))
(node (ref MH6) (pin 1))
(node (ref P28) (pin 2))
(node (ref P22) (pin 4))
(node (ref P22) (pin 18))
(node (ref P22) (pin 10))
(node (ref U2) (pin 0))
(node (ref D9) (pin 2))
(node (ref PA0) (pin 2))
(node (ref C17) (pin 1))
(node (ref C19) (pin 2))
(node (ref PA1) (pin 2))
(node (ref D5) (pin 2))
(node (ref C21) (pin 1))
(node (ref C20) (pin 2))
(node (ref C18) (pin 1))
(node (ref C22) (pin 1))
(node (ref D6) (pin 2))
(node (ref D3) (pin 2))
(node (ref PB2) (pin 2))
(node (ref MH3) (pin 1))
(node (ref MH2) (pin 1))
(node (ref P28) (pin 12))
(node (ref C13) (pin 2))
(node (ref C16) (pin 1))
(node (ref MH4) (pin 1))
(node (ref C15) (pin 1))
(node (ref C14) (pin 2))
(node (ref C23) (pin 1))
(node (ref C28) (pin 1))
(node (ref PA4) (pin 2))
(node (ref U12) (pin 3))
(node (ref U12) (pin 2))
(node (ref U3) (pin 0))
(node (ref U10) (pin 3))
(node (ref U10) (pin 2))
(node (ref U15) (pin 3))
(node (ref C35) (pin 1))
(node (ref U9) (pin 3))
(node (ref D4) (pin 2))
(node (ref U13) (pin 3))
(node (ref U13) (pin 2))
(node (ref U11) (pin 3))
(node (ref U11) (pin 2))
(node (ref U8) (pin 3))
(node (ref PB4) (pin 2))
(node (ref PB3) (pin 2))
(node (ref C34) (pin 1))
(node (ref D7) (pin 2))
(node (ref C33) (pin 1))
(node (ref PB1) (pin 2))
(node (ref U16) (pin 3))
(node (ref U16) (pin 2))
(node (ref U14) (pin 3))
(node (ref D8) (pin 2))
(node (ref C27) (pin 1))
(node (ref R19) (pin 2))
(node (ref R18) (pin 2))
(node (ref C29) (pin 1))
(node (ref C24) (pin 1))
(node (ref TP14) (pin 1))
(node (ref J1) (pin 1))
(node (ref J2) (pin 1))
(node (ref U7) (pin 2))
(node (ref U6) (pin 2))
(node (ref R20) (pin 2))
(node (ref U4) (pin 8))
(node (ref R17) (pin 2))
(node (ref U5) (pin 10))
(node (ref P20) (pin 19))
(node (ref P20) (pin 15))
(node (ref MH1) (pin 1))
(node (ref C31) (pin 1))
(node (ref C25) (pin 1))
(node (ref C30) (pin 1))
(node (ref C26) (pin 1))
(node (ref C32) (pin 1))
(node (ref PB0) (pin 2))
(node (ref D1) (pin 2))
(node (ref P9) (pin 15))
(node (ref P9) (pin 14))
(node (ref P9) (pin 9))
(node (ref D10) (pin 2))
(node (ref D2) (pin 2))
(node (ref U1) (pin 11))
(node (ref U1) (pin 1))
(node (ref U1) (pin 2))
(node (ref U1) (pin 0))
(node (ref U1) (pin 5))
(node (ref U1) (pin 8))
(node (ref U1) (pin 9))
(node (ref PA2) (pin 2))
(node (ref P9) (pin 2))
(node (ref P9) (pin 3))
(node (ref P9) (pin 16))
(node (ref P9) (pin 1))
(node (ref PA3) (pin 2))
(node (ref P9) (pin 8)))
(net (code 3) (name /U3CTRL0)
(node (ref U13) (pin 6))
(node (ref U4) (pin 10))
(node (ref U5) (pin 15))
(node (ref TP12) (pin 1))
(node (ref U15) (pin 2))
(node (ref U9) (pin 2))
(node (ref R15) (pin 1))
(node (ref U11) (pin 1)))
(net (code 4) (name /U2CTRL1)
(node (ref TP11) (pin 1))
(node (ref U12) (pin 1))
(node (ref U10) (pin 6))
(node (ref U8) (pin 1))
(node (ref U14) (pin 1))
(node (ref R12) (pin 1))
(node (ref U4) (pin 13))
(node (ref U5) (pin 18)))
(net (code 5) (name /U2CTRL0)
(node (ref U4) (pin 12))
(node (ref U12) (pin 6))
(node (ref R13) (pin 1))
(node (ref TP10) (pin 1))
(node (ref U14) (pin 2))
(node (ref U8) (pin 2))
(node (ref U10) (pin 1))
(node (ref U5) (pin 17)))
(net (code 6) (name /U1CTRL)
(node (ref U16) (pin 1))
(node (ref TP9) (pin 1))
(node (ref U5) (pin 14))
(node (ref R16) (pin 1))
(node (ref U4) (pin 9)))
(net (code 7) (name /!OE)
(node (ref TP8) (pin 1))
(node (ref U4) (pin 14))
(node (ref U5) (pin 19))
(node (ref R11) (pin 1)))
(net (code 8) (name /!RESET)
(node (ref TP7) (pin 1))
(node (ref U4) (pin 15))
(node (ref R10) (pin 1)))
(net (code 9) (name /!LED_EN)
(node (ref TP6) (pin 1))
(node (ref R6) (pin 2))
(node (ref R9) (pin 2))
(node (ref U4) (pin 6))
(node (ref R5) (pin 2)))
(net (code 10) (name VCC)
(node (ref U6) (pin 3))
(node (ref R15) (pin 2))
(node (ref U5) (pin 20))
(node (ref R16) (pin 2))
(node (ref U15) (pin 5))
(node (ref U11) (pin 5))
(node (ref U13) (pin 5))
(node (ref P28) (pin 1))
(node (ref J1) (pin 2))
(node (ref TP15) (pin 1))
(node (ref P22) (pin 11))
(node (ref R14) (pin 2))
(node (ref P1) (pin 1))
(node (ref U7) (pin 5))
(node (ref R12) (pin 2))
(node (ref U7) (pin 3))
(node (ref U6) (pin 5))
(node (ref R13) (pin 2))
(node (ref R8) (pin 1))
(node (ref U14) (pin 5))
(node (ref U12) (pin 5))
(node (ref U10) (pin 5))
(node (ref R7) (pin 1))
(node (ref U8) (pin 5))
(node (ref U4) (pin 16))
(node (ref P20) (pin 3))
(node (ref U9) (pin 5))
(node (ref DB0) (pin 2))
(node (ref U16) (pin 5))
(node (ref DA0) (pin 2))
(node (ref R11) (pin 2))
(node (ref R10) (pin 2))
(node (ref P1) (pin 3))
(node (ref P1) (pin 5))
(node (ref R9) (pin 1))
(node (ref C27) (pin 2))
(node (ref C23) (pin 2))
(node (ref C28) (pin 2))
(node (ref C34) (pin 2))
(node (ref C35) (pin 2))
(node (ref C30) (pin 2))
(node (ref C31) (pin 2))
(node (ref C26) (pin 2))
(node (ref C32) (pin 2))
(node (ref C29) (pin 2))
(node (ref C24) (pin 2))
(node (ref C25) (pin 2))
(node (ref C33) (pin 2)))
(net (code 11) (name "Net-(R1-Pad2)")
(node (ref R1) (pin 2))
(node (ref U6) (pin 4))
(node (ref R4) (pin 2)))
(net (code 12) (name "Net-(R2-Pad2)")
(node (ref R3) (pin 2))
(node (ref U7) (pin 4))
(node (ref R2) (pin 2)))
(net (code 13) (name "Net-(DB0-Pad1)")
(node (ref DB0) (pin 1))
(node (ref R6) (pin 1)))
(net (code 14) (name "Net-(DA0-Pad1)")
(node (ref R5) (pin 1))
(node (ref DA0) (pin 1)))
(net (code 15) (name "Net-(C12-Pad1)")
(node (ref C12) (pin 1))
(node (ref D10) (pin 1))
(node (ref U1) (pin 12)))
(net (code 16) (name /EXT_U1CTRL)
(node (ref P20) (pin 5))
(node (ref J2) (pin 6))
(node (ref TP5) (pin 1))
(node (ref U5) (pin 6)))
(net (code 17) (name "Net-(J2-Pad25)")
(node (ref J2) (pin 25)))
(net (code 18) (name "Net-(J2-Pad23)")
(node (ref J2) (pin 23)))
(net (code 19) (name "Net-(J2-Pad21)")
(node (ref J2) (pin 21)))
(net (code 20) (name "Net-(J2-Pad19)")
(node (ref J2) (pin 19)))
(net (code 21) (name "Net-(J2-Pad17)")
(node (ref J2) (pin 17)))
(net (code 22) (name "Net-(J2-Pad15)")
(node (ref J2) (pin 15)))
(net (code 23) (name /EXT_U3CTRL0)
(node (ref P20) (pin 11))
(node (ref U5) (pin 5))
(node (ref TP4) (pin 1))
(node (ref J2) (pin 7)))
(net (code 24) (name "Net-(J2-Pad27)")
(node (ref J2) (pin 27)))
(net (code 25) (name "Net-(J2-Pad14)")
(node (ref J2) (pin 14)))
(net (code 26) (name "Net-(J2-Pad13)")
(node (ref J2) (pin 13)))
(net (code 27) (name "Net-(J2-Pad28)")
(node (ref J2) (pin 28)))
(net (code 28) (name "Net-(J1-Pad11)")
(node (ref J1) (pin 11)))
(net (code 29) (name "Net-(J1-Pad9)")
(node (ref J1) (pin 9)))
(net (code 30) (name "Net-(J1-Pad7)")
(node (ref J1) (pin 7)))
(net (code 31) (name "Net-(J1-Pad5)")
(node (ref J1) (pin 5)))
(net (code 32) (name "Net-(J1-Pad3)")
(node (ref J1) (pin 3)))
(net (code 33) (name "Net-(J2-Pad16)")
(node (ref J2) (pin 16)))
(net (code 34) (name "Net-(J2-Pad18)")
(node (ref J2) (pin 18)))
(net (code 35) (name "Net-(J2-Pad20)")
(node (ref J2) (pin 20)))
(net (code 36) (name "Net-(J2-Pad22)")
(node (ref J2) (pin 22)))
(net (code 37) (name "Net-(J2-Pad24)")
(node (ref J2) (pin 24)))
(net (code 38) (name "Net-(J2-Pad26)")
(node (ref J2) (pin 26)))
(net (code 39) (name "Net-(J2-Pad11)")
(node (ref J2) (pin 11)))
(net (code 40) (name "Net-(J2-Pad30)")
(node (ref J2) (pin 30)))
(net (code 41) (name "Net-(J2-Pad32)")
(node (ref J2) (pin 32)))
(net (code 42) (name "Net-(J2-Pad34)")
(node (ref J2) (pin 34)))
(net (code 43) (name "Net-(J2-Pad36)")
(node (ref J2) (pin 36)))
(net (code 44) (name "Net-(J2-Pad38)")
(node (ref J2) (pin 38)))
(net (code 45) (name "Net-(J2-Pad37)")
(node (ref J2) (pin 37)))
(net (code 46) (name "Net-(J2-Pad35)")
(node (ref J2) (pin 35)))
(net (code 47) (name "Net-(J2-Pad33)")
(node (ref J2) (pin 33)))
(net (code 48) (name "Net-(J2-Pad31)")
(node (ref J2) (pin 31)))
(net (code 49) (name "Net-(J2-Pad29)")
(node (ref J2) (pin 29)))
(net (code 50) (name "Net-(J2-Pad12)")
(node (ref J2) (pin 12)))
(net (code 51) (name /EXT_U2CTRL1)
(node (ref J2) (pin 10))
(node (ref P20) (pin 10))
(node (ref TP1) (pin 1))
(node (ref U5) (pin 2)))
(net (code 52) (name /EXT_U2CTRL0)
(node (ref P20) (pin 9))
(node (ref J2) (pin 9))
(node (ref U5) (pin 3))
(node (ref TP2) (pin 1)))
(net (code 53) (name /EXT_U3CTRL1)
(node (ref U5) (pin 4))
(node (ref TP3) (pin 1))
(node (ref J2) (pin 8))
(node (ref P20) (pin 12)))
(net (code 54) (name "Net-(J2-Pad5)")
(node (ref J2) (pin 5)))
(net (code 55) (name "Net-(J2-Pad3)")
(node (ref J2) (pin 3)))
(net (code 56) (name "Net-(J2-Pad4)")
(node (ref J2) (pin 4)))
(net (code 57) (name /SCL)
(node (ref P22) (pin 26))
(node (ref J2) (pin 40))
(node (ref R7) (pin 2))
(node (ref U4) (pin 1))
(node (ref TP27) (pin 1)))
(net (code 58) (name "Net-(J2-Pad2)")
(node (ref J2) (pin 2)))
(net (code 59) (name "Net-(J1-Pad13)")
(node (ref J1) (pin 13)))
(net (code 60) (name /SDA)
(node (ref R8) (pin 2))
(node (ref U4) (pin 2))
(node (ref TP26) (pin 1))
(node (ref P22) (pin 24))
(node (ref J2) (pin 39)))
(net (code 61) (name /U3V3)
(node (ref U3) (pin 7))
(node (ref DBG4) (pin 2))
(node (ref DBY4) (pin 2))
(node (ref U9) (pin 4))
(node (ref C19) (pin 1))
(node (ref TP24) (pin 1)))
(net (code 62) (name "Net-(J1-Pad35)")
(node (ref J1) (pin 35)))
(net (code 63) (name "Net-(J1-Pad24)")
(node (ref J1) (pin 24)))
(net (code 64) (name "Net-(J1-Pad26)")
(node (ref J1) (pin 26)))
(net (code 65) (name "Net-(J1-Pad28)")
(node (ref J1) (pin 28)))
(net (code 66) (name "Net-(J1-Pad30)")
(node (ref J1) (pin 30)))
(net (code 67) (name "Net-(J1-Pad32)")
(node (ref J1) (pin 32)))
(net (code 68) (name "Net-(J1-Pad34)")
(node (ref J1) (pin 34)))
(net (code 69) (name "Net-(J1-Pad36)")
(node (ref J1) (pin 36)))
(net (code 70) (name "Net-(J1-Pad38)")
(node (ref J1) (pin 38)))
(net (code 71) (name "Net-(J1-Pad40)")
(node (ref J1) (pin 40)))
(net (code 72) (name "Net-(J1-Pad39)")
(node (ref J1) (pin 39)))
(net (code 73) (name "Net-(J1-Pad37)")
(node (ref J1) (pin 37)))
(net (code 74) (name "Net-(J1-Pad22)")
(node (ref J1) (pin 22)))
(net (code 75) (name "Net-(J1-Pad33)")
(node (ref J1) (pin 33)))
(net (code 76) (name "Net-(J1-Pad31)")
(node (ref J1) (pin 31)))
(net (code 77) (name "Net-(J1-Pad29)")
(node (ref J1) (pin 29)))
(net (code 78) (name "Net-(J1-Pad27)")
(node (ref J1) (pin 27)))
(net (code 79) (name "Net-(J1-Pad25)")
(node (ref J1) (pin 25)))
(net (code 80) (name "Net-(J1-Pad23)")
(node (ref J1) (pin 23)))
(net (code 81) (name "Net-(J1-Pad21)")
(node (ref J1) (pin 21)))
(net (code 82) (name "Net-(J1-Pad19)")
(node (ref J1) (pin 19)))
(net (code 83) (name "Net-(J1-Pad17)")
(node (ref J1) (pin 17)))
(net (code 84) (name "Net-(J1-Pad15)")
(node (ref J1) (pin 15)))
(net (code 85) (name "Net-(J1-Pad4)")
(node (ref J1) (pin 4)))
(net (code 86) (name "Net-(J1-Pad6)")
(node (ref J1) (pin 6)))
(net (code 87) (name "Net-(J1-Pad8)")
(node (ref J1) (pin 8)))
(net (code 88) (name "Net-(J1-Pad10)")
(node (ref J1) (pin 10)))
(net (code 89) (name "Net-(J1-Pad12)")
(node (ref J1) (pin 12)))
(net (code 90) (name "Net-(J1-Pad14)")
(node (ref J1) (pin 14)))
(net (code 91) (name "Net-(J1-Pad16)")
(node (ref J1) (pin 16)))
(net (code 92) (name "Net-(J1-Pad18)")
(node (ref J1) (pin 18)))
(net (code 93) (name "Net-(J1-Pad20)")
(node (ref J1) (pin 20)))
(net (code 94) (name "Net-(C11-Pad1)")
(node (ref D9) (pin 1))
(node (ref C11) (pin 1))
(node (ref U1) (pin 10)))
(net (code 95) (name /U1VC1)
(node (ref TP16) (pin 1))
(node (ref U7) (pin 6))
(node (ref C18) (pin 2))
(node (ref U1) (pin 3))
(node (ref U16) (pin 4)))
(net (code 96) (name /U1VC2)
(node (ref U6) (pin 6))
(node (ref C17) (pin 2))
(node (ref TP17) (pin 1))
(node (ref U16) (pin 6))
(node (ref U1) (pin 7)))
(net (code 97) (name "Net-(C9-Pad2)")
(node (ref C9) (pin 2))
(node (ref U2) (pin 8)))
(net (code 98) (name "Net-(C9-Pad1)")
(node (ref U1) (pin 6))
(node (ref C9) (pin 1)))
(net (code 99) (name "Net-(C10-Pad1)")
(node (ref U3) (pin 8))
(node (ref C10) (pin 1)))
(net (code 100) (name "Net-(C10-Pad2)")
(node (ref U1) (pin 4))
(node (ref C10) (pin 2)))
(net (code 101) (name "Net-(C2-Pad1)")
(node (ref D2) (pin 1))
(node (ref C2) (pin 1))
(node (ref U2) (pin 10)))
(net (code 102) (name "Net-(C1-Pad1)")
(node (ref U2) (pin 5))
(node (ref D1) (pin 1))
(node (ref C1) (pin 1)))
(net (code 103) (name "Net-(P20-Pad13)")
(node (ref P20) (pin 13)))
(net (code 104) (name /U3V4)
(node (ref U3) (pin 9))
(node (ref DBG1) (pin 2))
(node (ref DBY1) (pin 2))
(node (ref TP25) (pin 1))
(node (ref U15) (pin 4))
(node (ref C22) (pin 2)))
(net (code 105) (name /U2V1)
(node (ref DAY2) (pin 2))
(node (ref TP18) (pin 1))
(node (ref U2) (pin 4))
(node (ref C14) (pin 1))
(node (ref DAG2) (pin 2))
(node (ref U12) (pin 4)))
(net (code 106) (name /U2V2)
(node (ref U2) (pin 2))
(node (ref DAG3) (pin 2))
(node (ref C15) (pin 2))
(node (ref U10) (pin 4))
(node (ref DAY3) (pin 2))
(node (ref TP19) (pin 1)))
(net (code 107) (name "Net-(DAG1-Pad1)")
(node (ref DAG4) (pin 1))
(node (ref R1) (pin 1))
(node (ref DAG3) (pin 1))
(node (ref DAG2) (pin 1))
(node (ref DAG1) (pin 1)))
(net (code 108) (name "Net-(DAY1-Pad1)")
(node (ref DAY2) (pin 1))
(node (ref DAY1) (pin 1))
(node (ref DAY3) (pin 1))
(node (ref R2) (pin 1))
(node (ref DAY4) (pin 1)))
(net (code 109) (name "Net-(DBG1-Pad1)")
(node (ref DBG1) (pin 1))
(node (ref R3) (pin 1))
(node (ref DBG4) (pin 1))
(node (ref DBG3) (pin 1))
(node (ref DBG2) (pin 1)))
(net (code 110) (name /U3V1)
(node (ref U11) (pin 4))
(node (ref C20) (pin 1))
(node (ref TP22) (pin 1))
(node (ref DBG3) (pin 2))
(node (ref U3) (pin 4))
(node (ref DBY3) (pin 2)))
(net (code 111) (name /U3V2)
(node (ref U13) (pin 4))
(node (ref U3) (pin 2))
(node (ref C21) (pin 2))
(node (ref DBG2) (pin 2))
(node (ref TP23) (pin 1))
(node (ref DBY2) (pin 2)))
(net (code 112) (name "Net-(DBY1-Pad1)")
(node (ref R4) (pin 1))
(node (ref DBY3) (pin 1))
(node (ref DBY2) (pin 1))
(node (ref DBY1) (pin 1))
(node (ref DBY4) (pin 1)))
(net (code 113) (name /LED_EN2)
(node (ref U4) (pin 7))
(node (ref U7) (pin 1))
(node (ref U6) (pin 1))
(node (ref R20) (pin 1)))
(net (code 114) (name /U2V3)
(node (ref U14) (pin 4))
(node (ref C13) (pin 1))
(node (ref U2) (pin 7))
(node (ref TP20) (pin 1))
(node (ref DAG1) (pin 2))
(node (ref DAY1) (pin 2)))
(net (code 115) (name /U2V4)
(node (ref TP21) (pin 1))
(node (ref U8) (pin 4))
(node (ref DAY4) (pin 2))
(node (ref DAG4) (pin 2))
(node (ref C16) (pin 2))
(node (ref U2) (pin 9)))
(net (code 116) (name "Net-(C6-Pad2)")
(node (ref PA3) (pin 1))
(node (ref C6) (pin 2)))
(net (code 117) (name "Net-(C3-Pad1)")
(node (ref D3) (pin 1))
(node (ref C3) (pin 1))
(node (ref U3) (pin 1)))
(net (code 118) (name "Net-(C8-Pad2)")
(node (ref C8) (pin 2))
(node (ref PB3) (pin 1)))
(net (code 119) (name "Net-(C7-Pad1)")
(node (ref U3) (pin 10))
(node (ref D7) (pin 1))
(node (ref C7) (pin 1)))
(net (code 120) (name "Net-(C4-Pad2)")
(node (ref C4) (pin 2))
(node (ref PB4) (pin 1)))
(net (code 121) (name "Net-(C4-Pad1)")
(node (ref U3) (pin 6))
(node (ref C4) (pin 1))
(node (ref D4) (pin 1)))
(net (code 122) (name "Net-(C5-Pad2)")
(node (ref C5) (pin 2))
(node (ref PA1) (pin 1)))
(net (code 123) (name "Net-(C12-Pad2)")
(node (ref C12) (pin 2))
(node (ref PB0) (pin 1)))
(net (code 124) (name "Net-(C11-Pad2)")
(node (ref PA0) (pin 1))
(node (ref C11) (pin 2)))
(net (code 125) (name "Net-(C1-Pad2)")
(node (ref PA2) (pin 1))
(node (ref C1) (pin 2)))
(net (code 126) (name "Net-(C5-Pad1)")
(node (ref D5) (pin 1))
(node (ref U2) (pin 6))
(node (ref C5) (pin 1)))
(net (code 127) (name "Net-(C7-Pad2)")
(node (ref C7) (pin 2))
(node (ref PB1) (pin 1)))
(net (code 128) (name "Net-(C2-Pad2)")
(node (ref C2) (pin 2))
(node (ref PA4) (pin 1)))
(net (code 129) (name "Net-(C6-Pad1)")
(node (ref C6) (pin 1))
(node (ref U2) (pin 1))
(node (ref D6) (pin 1)))
(net (code 130) (name "Net-(C8-Pad1)")
(node (ref U3) (pin 5))
(node (ref D8) (pin 1))
(node (ref C8) (pin 1)))
(net (code 131) (name "Net-(C3-Pad2)")
(node (ref C3) (pin 2))
(node (ref PB2) (pin 1)))
(net (code 132) (name "Net-(U3-Pad3)")
(node (ref U3) (pin 3)))
(net (code 133) (name "Net-(P22-Pad12)")
(node (ref P22) (pin 12)))
(net (code 134) (name "Net-(P22-Pad17)")
(node (ref P22) (pin 17)))
(net (code 135) (name "Net-(P22-Pad16)")
(node (ref P22) (pin 16)))
(net (code 136) (name "Net-(P22-Pad25)")
(node (ref P22) (pin 25)))
(net (code 137) (name "Net-(P22-Pad15)")
(node (ref P22) (pin 15)))
(net (code 138) (name "Net-(P22-Pad14)")
(node (ref P22) (pin 14)))
(net (code 139) (name "Net-(P22-Pad23)")
(node (ref P22) (pin 23)))
(net (code 140) (name "Net-(P22-Pad13)")
(node (ref P22) (pin 13)))
(net (code 141) (name "Net-(P22-Pad22)")
(node (ref P22) (pin 22)))
(net (code 142) (name "Net-(P22-Pad19)")
(node (ref P22) (pin 19)))
(net (code 143) (name "Net-(P22-Pad21)")
(node (ref P22) (pin 21)))
(net (code 144) (name "Net-(P22-Pad20)")
(node (ref P22) (pin 20)))
(net (code 145) (name "Net-(P22-Pad9)")
(node (ref P22) (pin 9)))
(net (code 146) (name "Net-(P22-Pad8)")
(node (ref P22) (pin 8)))
(net (code 147) (name "Net-(P22-Pad7)")
(node (ref P22) (pin 7)))
(net (code 148) (name "Net-(P22-Pad6)")
(node (ref P22) (pin 6)))
(net (code 149) (name "Net-(P22-Pad5)")
(node (ref P22) (pin 5)))
(net (code 150) (name "Net-(P22-Pad3)")
(node (ref P22) (pin 3)))
(net (code 151) (name "Net-(U2-Pad3)")
(node (ref U2) (pin 3)))
(net (code 152) (name "Net-(P22-Pad2)")
(node (ref P22) (pin 2)))
(net (code 153) (name "Net-(P28-Pad3)")
(node (ref P28) (pin 3)))
(net (code 154) (name "Net-(P22-Pad1)")
(node (ref P22) (pin 1)))
(net (code 155) (name "Net-(P28-Pad19)")
(node (ref P28) (pin 19)))
(net (code 156) (name "Net-(P28-Pad18)")
(node (ref P28) (pin 18)))
(net (code 157) (name "Net-(P28-Pad17)")
(node (ref P28) (pin 17)))
(net (code 158) (name "Net-(P28-Pad16)")
(node (ref P28) (pin 16)))
(net (code 159) (name "Net-(P28-Pad15)")
(node (ref P28) (pin 15)))
(net (code 160) (name "Net-(P28-Pad14)")
(node (ref P28) (pin 14)))
(net (code 161) (name "Net-(P28-Pad13)")
(node (ref P28) (pin 13)))
(net (code 162) (name "Net-(P28-Pad22)")
(node (ref P28) (pin 22)))
(net (code 163) (name "Net-(P28-Pad21)")
(node (ref P28) (pin 21)))
(net (code 164) (name "Net-(P28-Pad11)")
(node (ref P28) (pin 11)))
(net (code 165) (name "Net-(P28-Pad20)")
(node (ref P28) (pin 20)))
(net (code 166) (name "Net-(P28-Pad10)")
(node (ref P28) (pin 10)))
(net (code 167) (name "Net-(P28-Pad9)")
(node (ref P28) (pin 9)))
(net (code 168) (name "Net-(P28-Pad8)")
(node (ref P28) (pin 8)))
(net (code 169) (name "Net-(P28-Pad7)")
(node (ref P28) (pin 7)))
(net (code 170) (name "Net-(P28-Pad6)")
(node (ref P28) (pin 6)))
(net (code 171) (name "Net-(P28-Pad5)")
(node (ref P28) (pin 5)))
(net (code 172) (name "Net-(P28-Pad4)")
(node (ref P28) (pin 4)))
(net (code 173) (name /A2)
(node (ref P1) (pin 6))
(node (ref R19) (pin 1))
(node (ref U4) (pin 5))
(node (ref TP30) (pin 1)))
(net (code 174) (name /A1)
(node (ref TP29) (pin 1))
(node (ref R18) (pin 1))
(node (ref U4) (pin 4))
(node (ref P1) (pin 4)))
(net (code 175) (name /A0)
(node (ref P1) (pin 2))
(node (ref TP28) (pin 1))
(node (ref R17) (pin 1))
(node (ref U4) (pin 3)))
(net (code 176) (name "Net-(P9-Pad4)")
(node (ref P9) (pin 4)))
(net (code 177) (name "Net-(P9-Pad13)")
(node (ref P9) (pin 13)))
(net (code 178) (name "Net-(P9-Pad12)")
(node (ref P9) (pin 12)))
(net (code 179) (name "Net-(P9-Pad11)")
(node (ref P9) (pin 11)))
(net (code 180) (name "Net-(P9-Pad10)")
(node (ref P9) (pin 10)))
(net (code 181) (name "Net-(P9-Pad7)")
(node (ref P9) (pin 7)))
(net (code 182) (name "Net-(P9-Pad6)")
(node (ref P9) (pin 6)))
(net (code 183) (name "Net-(P9-Pad5)")
(node (ref P9) (pin 5)))
(net (code 184) (name "Net-(U5-Pad13)")
(node (ref U5) (pin 13)))
(net (code 185) (name "Net-(U5-Pad12)")
(node (ref U5) (pin 12)))
(net (code 186) (name "Net-(U5-Pad11)")
(node (ref U5) (pin 11)))
(net (code 187) (name "Net-(U5-Pad9)")
(node (ref U5) (pin 9)))
(net (code 188) (name "Net-(U5-Pad8)")
(node (ref U5) (pin 8)))
(net (code 189) (name "Net-(U5-Pad7)")
(node (ref U5) (pin 7)))
(net (code 190) (name "Net-(U5-Pad1)")
(node (ref U5) (pin 1)))
(net (code 191) (name "Net-(P20-Pad16)")
(node (ref P20) (pin 16)))
(net (code 192) (name "Net-(P20-Pad21)")
(node (ref P20) (pin 21)))
(net (code 193) (name "Net-(P20-Pad22)")
(node (ref P20) (pin 22)))
(net (code 194) (name "Net-(P20-Pad20)")
(node (ref P20) (pin 20)))
(net (code 195) (name "Net-(P20-Pad18)")
(node (ref P20) (pin 18)))
(net (code 196) (name "Net-(P20-Pad14)")
(node (ref P20) (pin 14)))
(net (code 197) (name "Net-(P20-Pad8)")
(node (ref P20) (pin 8)))
(net (code 198) (name "Net-(P20-Pad6)")
(node (ref P20) (pin 6)))
(net (code 199) (name "Net-(P20-Pad4)")
(node (ref P20) (pin 4)))
(net (code 200) (name "Net-(P20-Pad2)")
(node (ref P20) (pin 2)))
(net (code 201) (name "Net-(P20-Pad17)")
(node (ref P20) (pin 17)))
(net (code 202) (name "Net-(P20-Pad7)")
(node (ref P20) (pin 7)))
(net (code 203) (name "Net-(P20-Pad1)")
(node (ref P20) (pin 1)))))
|