dstat-mainboard.net 51.4 KiB
Newer Older
Michael DM Dryden's avatar
Michael DM Dryden committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
(export (version D)
  (design
    (source Z:\Users\mdryden\src\dstat-hardware\dstat-mainboard.sch)
    (date "03/09/2014 5:30:10 PM")
    (tool "eeschema (2013-07-07 BZR 4022)-stable"))
  (components
    (comp (ref C44)
      (value 10u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 50534D38))
    (comp (ref C5)
      (value 10u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FE43F))
    (comp (ref L1)
      (value 10uH)
      (footprint SM0805)
      (libsource (lib device) (part INDUCTOR))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FE401))
    (comp (ref C4)
      (value 10n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FE2FC))
    (comp (ref C14)
      (value 4.7n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FDBE4))
    (comp (ref R7)
      (value 1M)
      (footprint SM0805)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FDBD4))
    (comp (ref U6)
      (value TPD2S017)
      (footprint SOT23_6)
      (libsource (lib special) (part TPD2S017))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD827))
    (comp (ref C51)
      (value 10u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD5DC))
    (comp (ref C50)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD5D3))
    (comp (ref FB3)
      (value FERRITE)
      (footprint SM0805)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD4CB))
    (comp (ref C49)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD436))
    (comp (ref C48)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD433))
    (comp (ref C47)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD42F))
    (comp (ref C46)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD427))
    (comp (ref C45)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FD412))
    (comp (ref U1)
      (value TPS79933)
      (footprint SOT23-5)
      (libsource (lib dstat-mainboard-cache) (part TPS79933))
      (sheetpath (names /) (tstamps /))
      (tstamp 503FC388))
    (comp (ref CON1)
      (value AVR-PDI)
      (footprint pin_array_3x2)
      (libsource (lib dstat-mainboard-cache) (part AVR-PDI))
      (sheetpath (names /) (tstamps /))
      (tstamp 503EFD34))
    (comp (ref USB1)
      (value USB-MB-S)
      (footprint usb_mini_b_smd)
      (libsource (lib dstat-mainboard-cache) (part USB-MB-S))
      (sheetpath (names /) (tstamps /))
      (tstamp 503EFB96))
    (comp (ref IC1)
      (value ATXMEGA256A3U)
      (footprint TQFP_64)
      (libsource (lib dstat-mainboard-cache) (part ATXMEGA256A3U))
      (sheetpath (names /) (tstamps /))
      (tstamp 503EF797))
    (comp (ref C55)
      (value 10n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400DD2F))
    (comp (ref FB2)
      (value FILTER)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400DF18))
    (comp (ref FB1)
      (value FILTER)
      (libsource (lib device) (part FILTER))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400E1DE))
    (comp (ref C52)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400E1FA))
    (comp (ref C53)
      (value 1u)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400E200))
    (comp (ref C54)
      (value 47u)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400E81C))
    (comp (ref U8)
      (value MAX6126)
      (libsource (lib dstat) (part MAX6126))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400EF0B))
    (comp (ref C15)
      (value 4.7n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400EF66))
    (comp (ref C16)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400EF6C))
    (comp (ref C25)
      (value 1u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400EF72))
    (comp (ref UR2)
      (value MAX5491)
      (libsource (lib dstat) (part MAX5491))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400F6B6))
    (comp (ref R10)
      (value 10k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400F860))
    (comp (ref C19)
      (value 1u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400F86D))
    (comp (ref U11)
      (value OPA350)
      (libsource (lib dstat) (part OPA350))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400FC47))
    (comp (ref C22)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400FF4E))
    (comp (ref C29)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400FF66))
    (comp (ref C31)
      (value 1u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400FF6C))
    (comp (ref C34)
      (value 47u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5400FF72))
    (comp (ref C1)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54010664))
    (comp (ref C2)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54010799))
    (comp (ref U2)
      (value MAX5443)
      (libsource (lib dstat) (part MAX5443))
      (sheetpath (names /) (tstamps /))
      (tstamp 540107A1))
    (comp (ref C3)
      (value 1u)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 540107AE))
    (comp (ref U7)
      (value MAX4477)
      (libsource (lib dstat) (part MAX4477))
      (sheetpath (names /) (tstamps /))
      (tstamp 54010B8D))
    (comp (ref R1)
      (value 18.7k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54010BCC))
    (comp (ref R2)
      (value 18.7k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54010BD9))
    (comp (ref C7)
      (value 180p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54010CE8))
    (comp (ref C10)
      (value 160p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54010EB7))
    (comp (ref R4)
      (value 1k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54010EDF))
    (comp (ref C11)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54011027))
    (comp (ref R5)
      (value 25.5k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54011158))
    (comp (ref R6)
      (value 25.5k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5401115E))
    (comp (ref C12)
      (value 180p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54011164))
    (comp (ref C13)
      (value 68p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5401116C))
    (comp (ref R8)
      (value 1k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 540112DB))
    (comp (ref UR1)
      (value MAX5491)
      (libsource (lib dstat) (part MAX5491))
      (sheetpath (names /) (tstamps /))
      (tstamp 540114B7))
    (comp (ref U4)
      (value LMP7702)
      (libsource (lib dstat) (part LMP7702))
      (sheetpath (names /) (tstamps /))
      (tstamp 54011664))
    (comp (ref C8)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 540117F8))
    (comp (ref U3)
      (value MAX4737)
      (libsource (lib dstat) (part MAX4737))
      (sheetpath (names /) (tstamps /))
      (tstamp 540604B9))
    (comp (ref C9)
      (value 10n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54060624))
    (comp (ref U5)
      (value LMP7715MF)
      (libsource (lib dstat) (part LMP7715MF))
      (sheetpath (names /) (tstamps /))
      (tstamp 54060BDE))
    (comp (ref C6)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54060D66))
    (comp (ref R3)
      (value 100)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54060E39))
    (comp (ref U10)
      (value LMP7721)
      (libsource (lib dstat) (part LMP7721))
      (sheetpath (names /) (tstamps /))
      (tstamp 540610CD))
    (comp (ref C17)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 540611A9))
    (comp (ref R9)
      (value 100)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 540612B3))
    (comp (ref C18)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 540612A1))
    (comp (ref U9)
      (value LMP7715MF)
      (libsource (lib dstat) (part LMP7715MF))
      (sheetpath (names /) (tstamps /))
      (tstamp 54061295))
    (comp (ref U12)
      (value MAX4617)
      (libsource (lib dstat) (part MAX4617))
      (sheetpath (names /) (tstamps /))
      (tstamp 54061CDC))
    (comp (ref C28)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54061DAE))
    (comp (ref R15)
      (value 100)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54062035))
    (comp (ref C37)
      (value 60n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54062044))
    (comp (ref R19)
      (value 3k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406205B))
    (comp (ref C40)
      (value 2n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54062061))
    (comp (ref R16)
      (value 30k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54062067))
    (comp (ref C38)
      (value 200p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406206D))
    (comp (ref R20)
      (value 300k)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54062073))
    (comp (ref C41)
      (value 20p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54062079))
    (comp (ref R17)
      (value 3M)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406207F))
    (comp (ref C39)
      (value 2p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54062085))
    (comp (ref R21)
      (value 30M)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406208B))
    (comp (ref R18)
      (value 100M)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54062099))
    (comp (ref U13)
      (value ADS1255)
      (libsource (lib dstat) (part ADS1255))
      (sheetpath (names /) (tstamps /))
      (tstamp 540648F9))
    (comp (ref C35)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406490C))
    (comp (ref C36)
      (value 10u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54064912))
    (comp (ref C26)
      (value 47u)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54064D84))
    (comp (ref C27)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54064D8A))
    (comp (ref C30)
      (value 100p)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54064D90))
    (comp (ref R13)
      (value 49.9)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54064DA2))
    (comp (ref R14)
      (value 49.9)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54064DB4))
    (comp (ref C23)
      (value 100p)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54065F99))
    (comp (ref C20)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54065F9F))
    (comp (ref R11)
      (value 301)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54065FA5))
    (comp (ref C21)
      (value 100n)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54066457))
    (comp (ref C24)
      (value 100p)
      (footprint SM0805)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406645D))
    (comp (ref R12)
      (value 301)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54066463))
    (comp (ref C33)
      (value 100n)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54066B47))
    (comp (ref C32)
      (value 10u)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 54066B4D))
    (comp (ref X1)
      (value 7.68M)
      (libsource (lib device) (part CRYSTAL))
      (sheetpath (names /) (tstamps /))
      (tstamp 540672C0))
    (comp (ref C43)
      (value 18p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 540672CD))
    (comp (ref C42)
      (value 18p)
      (libsource (lib device) (part C))
      (sheetpath (names /) (tstamps /))
      (tstamp 540672DF))
    (comp (ref R24)
      (value 100)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 540677F7))
    (comp (ref R23)
      (value 100)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 54067809))
    (comp (ref R22)
      (value 100)
      (libsource (lib device) (part R))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406780F))
    (comp (ref COUNTER1)
      (value CONN_1)
      (libsource (lib conn) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54068CC8))
    (comp (ref REFERENCE1)
      (value CONN_1)
      (libsource (lib conn) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54068CD5))
    (comp (ref WORKING1)
      (value CONN_1)
      (libsource (lib conn) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54068CDB))
    (comp (ref RSHIELD1)
      (value CONN_1)
      (libsource (lib conn) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54068D0D))
    (comp (ref WSHIELD1)
      (value CONN_1)
      (libsource (lib conn) (part CONN_1))
      (sheetpath (names /) (tstamps /))
      (tstamp 54068D18))
    (comp (ref P6)
      (value CONN_30)
      (libsource (lib conn) (part CONN_30))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406A797))
    (comp (ref P8)
      (value CONN_3X2)
      (libsource (lib conn) (part CONN_3X2))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406B150))
    (comp (ref P7)
      (value CONN_2)
      (libsource (lib conn) (part CONN_2))
      (sheetpath (names /) (tstamps /))
      (tstamp 5406B18C)))
  (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)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (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)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part FILTER)
      (description "Filtre EMI")
      (fields
        (field (name Reference) FB)
        (field (name Value) FILTER)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (type passive))))
    (libpart (lib device) (part INDUCTOR)
      (fields
        (field (name Reference) L)
        (field (name Value) INDUCTOR)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name 1) (type passive))
        (pin (num 2) (name 2) (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)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (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_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_30)
      (description "Symbole general de connexion")
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_30))
      (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))))
    (libpart (lib conn) (part CONN_3X2)
      (description "Symbole general de connecteur")
      (fields
        (field (name Reference) P)
        (field (name Value) CONN_3X2))
      (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 special) (part TPD2S017)
      (description "2 channels EDS protection IEEE1394")
      (docs texas/tpd2s017.pdf)
      (fields
        (field (name Reference) U)
        (field (name Value) TPD2S017))
      (pins
        (pin (num 1) (name CH1Out) (type passive))
        (pin (num 2) (name GND) (type passive))
        (pin (num 3) (name CH1In) (type passive))
        (pin (num 4) (name CH2Int) (type passive))
        (pin (num 5) (name VCC) (type passive))
        (pin (num 6) (name CH2Out) (type passive))))
    (libpart (lib dstat) (part ADS1255)
      (fields
        (field (name Reference) U)
        (field (name Value) ADS1255)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name AVDD) (type power_in))
        (pin (num 2) (name AGND) (type power_in))
        (pin (num 3) (name VREFN) (type passive))
        (pin (num 4) (name VREFP) (type passive))
        (pin (num 5) (name AINCOM) (type passive))
        (pin (num 6) (name AIN0) (type passive))
        (pin (num 7) (name AIN1) (type passive))
        (pin (num 8) (name ~SYNC~,~PDWN~) (type input))
        (pin (num 9) (name ~RESET~) (type input))
        (pin (num 10) (name DVDD) (type power_in))
        (pin (num 11) (name DGND) (type power_in))
        (pin (num 12) (name XTAL2) (type passive))
        (pin (num 13) (name XTAL1/CLKIN) (type passive))
        (pin (num 14) (name ~CS~) (type input))
        (pin (num 15) (name ~DRDY~) (type output))
        (pin (num 16) (name DOUT) (type output))
        (pin (num 17) (name DIN) (type input))
        (pin (num 18) (name SCLK) (type input))
        (pin (num 19) (name D0/CLKOUT) (type BiDi))
        (pin (num 20) (name D1) (type BiDi))))
    (libpart (lib dstat) (part LMP7702)
      (fields
        (field (name Reference) U)
        (field (name Value) LMP7702)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type output))
        (pin (num 2) (name -) (type input))
        (pin (num 3) (name +) (type input))
        (pin (num 4) (name V-) (type power_in))
        (pin (num 5) (name +) (type input))
        (pin (num 6) (name -) (type input))
        (pin (num 7) (name ~) (type output))
        (pin (num 8) (name V+) (type power_in))))
    (libpart (lib dstat) (part LMP7715MF)
      (fields
        (field (name Reference) U)
        (field (name Value) LMP7715MF)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type output))
        (pin (num 2) (name V-) (type power_in))
        (pin (num 3) (name +) (type input))
        (pin (num 4) (name -) (type input))
        (pin (num 5) (name V+) (type power_in))))
    (libpart (lib dstat) (part LMP7721)
      (fields
        (field (name Reference) U)
        (field (name Value) LMP7721)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name +) (type input))
        (pin (num 2) (name ~) (type passive))
        (pin (num 3) (name V-) (type power_in))
        (pin (num 4) (name ~) (type output))
        (pin (num 5) (name +) (type input))
        (pin (num 6) (name V+) (type power_in))
        (pin (num 7) (name ~) (type passive))
        (pin (num 8) (name -) (type input))))
    (libpart (lib dstat) (part MAX4477)
      (fields
        (field (name Reference) U)
        (field (name Value) MAX4477)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type output))
        (pin (num 2) (name -) (type input))
        (pin (num 3) (name +) (type input))
        (pin (num 4) (name V-) (type power_in))
        (pin (num 5) (name +) (type input))
        (pin (num 6) (name -) (type input))
        (pin (num 7) (name ~) (type output))
        (pin (num 8) (name V+) (type power_in))))
    (libpart (lib dstat) (part MAX4617)
      (fields
        (field (name Reference) U)
        (field (name Value) MAX4617)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name X4) (type passive))
        (pin (num 2) (name X6) (type passive))
        (pin (num 3) (name COM) (type passive))
        (pin (num 4) (name X7) (type passive))
        (pin (num 5) (name X5) (type passive))
        (pin (num 6) (name EN) (type input))
        (pin (num 8) (name GND) (type power_in))
        (pin (num 9) (name C) (type input))
        (pin (num 10) (name B) (type input))
        (pin (num 11) (name A) (type input))
        (pin (num 12) (name X3) (type passive))
        (pin (num 13) (name X0) (type passive))
        (pin (num 14) (name X1) (type passive))
        (pin (num 15) (name X2) (type passive))
        (pin (num 16) (name VCC) (type power_in))))
    (libpart (lib dstat) (part MAX4737)
      (fields
        (field (name Reference) U)
        (field (name Value) MAX4737)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name NO1) (type passive))
        (pin (num 2) (name COM1) (type passive))
        (pin (num 3) (name NO2) (type passive))
        (pin (num 4) (name COM2) (type passive))
        (pin (num 5) (name IN2) (type input))
        (pin (num 6) (name IN3) (type input))
        (pin (num 7) (name ~) (type power_in))
        (pin (num 8) (name NO3) (type passive))
        (pin (num 9) (name COM3) (type passive))
        (pin (num 10) (name COM4) (type passive))
        (pin (num 11) (name NO4) (type passive))
        (pin (num 12) (name IN4) (type input))
        (pin (num 13) (name IN1) (type input))
        (pin (num 14) (name V+) (type power_in))))
    (libpart (lib dstat) (part MAX5443)
      (description "+3V, Serial-Input, Voltage-Output, 16-Bit DAC")
      (fields
        (field (name Reference) U)
        (field (name Value) MAX5443)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name Vref) (type passive))
        (pin (num 2) (name ~CS~) (type input))
        (pin (num 3) (name SCK) (type input))
        (pin (num 4) (name SDI) (type input))
        (pin (num 5) (name ~CLR~) (type input))
        (pin (num 6) (name OUT) (type passive))
        (pin (num 7) (name VDD) (type power_in))
        (pin (num 8) (name GND) (type power_in))))
    (libpart (lib dstat) (part MAX5491)
      (fields
        (field (name Reference) UR)
        (field (name Value) MAX5491)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ~) (type passive))
        (pin (num 2) (name ~) (type passive))
        (pin (num 3) (name ~) (type passive))))
    (libpart (lib dstat) (part MAX6126)
      (fields
        (field (name Reference) U)
        (field (name Value) MAX6126)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name NR) (type passive))
        (pin (num 2) (name VCC) (type power_in))
        (pin (num 3) (name GND) (type power_in))
        (pin (num 4) (name GND_S) (type power_in))
        (pin (num 6) (name OUT_S) (type passive))
        (pin (num 7) (name OUT_F) (type power_out))))
    (libpart (lib dstat) (part OPA350)
      (fields
        (field (name Reference) U)
        (field (name Value) OPA350)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 2) (name -) (type input))
        (pin (num 3) (name +) (type input))
        (pin (num 4) (name V-) (type power_in))
        (pin (num 6) (name ~) (type passive))
        (pin (num 7) (name V+) (type power_in))))
    (libpart (lib dstat-mainboard-cache) (part ATXMEGA256A3U)
      (fields
        (field (name Reference) IC)
        (field (name Value) ATXMEGA256A3U)
        (field (name Footprint) TQFP64)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name ADC3_AC3_PA3) (type BiDi))
        (pin (num 2) (name ADC4_AC4_PA4) (type BiDi))
        (pin (num 3) (name ADC5_AC5_PA5) (type BiDi))
        (pin (num 4) (name ADC6_AC6_PA6) (type BiDi))
        (pin (num 5) (name ADC7_AC7__AC0OUT_PA7) (type BiDi))
        (pin (num 6) (name ADC0_AC0_AREF_PB0) (type BiDi))
        (pin (num 7) (name ADC1_AC1_PB1) (type BiDi))
        (pin (num 8) (name ADC2_AC2_DAC0_PB2) (type BiDi))
        (pin (num 9) (name ADC3_AC3_DAC1_PB3) (type BiDi))
        (pin (num 10) (name ADC4_AC4_TMS_PB4) (type BiDi))
        (pin (num 11) (name ADC5_AC5_TDI_PB5) (type BiDi))
        (pin (num 12) (name ADC6_AC6_TCK_PB6) (type BiDi))
        (pin (num 13) (name ADC_7_AC7_AC0OUT_TDO_PB7) (type BiDi))
        (pin (num 14) (name GND) (type power_in))
        (pin (num 15) (name VCC) (type power_in))
        (pin (num 16) (name OC0A_SDA_PC0) (type BiDi))
        (pin (num 17) (name OC0B_XCK0_SCL_PC1) (type BiDi))
        (pin (num 18) (name OC0C_RXD0_PC2) (type BiDi))
        (pin (num 19) (name OC0D_TXD0_PC3) (type BiDi))
        (pin (num 20) (name OC0C_SS_PC4) (type BiDi))
        (pin (num 21) (name OC0C_XCK1_MOSI_PC5) (type BiDi))
        (pin (num 22) (name OC0D_RXD1_MISO_PC6) (type BiDi))
        (pin (num 23) (name OC0D_TXD1_SCK_CLK0_EVO_PC7) (type BiDi))
        (pin (num 24) (name GND) (type power_in))
        (pin (num 25) (name VCC) (type power_in))
        (pin (num 26) (name OC0A_PD0) (type BiDi))
        (pin (num 27) (name OC0B_XCK0_PD1) (type BiDi))
        (pin (num 28) (name OC0C_RXD0_PD2) (type BiDi))
        (pin (num 29) (name OC0D_TXD0_PD3) (type BiDi))
        (pin (num 30) (name OC1A_SS_PD4) (type BiDi))
        (pin (num 31) (name OC1B_XCK1_MOSI_PD5) (type BiDi))
        (pin (num 32) (name RXD1_MISO_DM_PD6) (type BiDi))
        (pin (num 33) (name TXD1_SCK_CLK0_EV0_DP_PD7) (type BiDi))
        (pin (num 34) (name GND) (type power_in))
        (pin (num 35) (name VCC) (type power_in))
        (pin (num 36) (name OC0A_SDA_PE0) (type BiDi))
        (pin (num 37) (name OC0B_XCK0_SCL_PE1) (type BiDi))
        (pin (num 38) (name OC0C_RXD0_PE2) (type BiDi))
        (pin (num 39) (name OC0D_TXD0_PE3) (type BiDi))
        (pin (num 40) (name OC1A_SS_PE4) (type BiDi))
        (pin (num 41) (name OC1B_XCK1_MOSI_PE5) (type BiDi))
        (pin (num 42) (name RXD1_MISO_TOSC2_PE6) (type BiDi))
        (pin (num 43) (name TXD1_SCK_CLKO_EVO_TOSC1_PE7) (type BiDi))
        (pin (num 44) (name GND) (type power_in))
        (pin (num 45) (name VCC) (type power_in))
        (pin (num 46) (name OC0A_PF0) (type BiDi))
        (pin (num 47) (name OC0B_XCK0_PF1) (type BiDi))
        (pin (num 48) (name OC0C_RXD0_PF2) (type BiDi))
        (pin (num 49) (name OC0D_TXD0_PF3) (type BiDi))
        (pin (num 50) (name PF4) (type BiDi))
        (pin (num 51) (name PF5) (type input))
        (pin (num 52) (name GND) (type power_in))
        (pin (num 53) (name VCC) (type power_in))
        (pin (num 54) (name PF6) (type BiDi))
        (pin (num 55) (name PF7) (type BiDi))
        (pin (num 56) (name PDI_DATA) (type input))
        (pin (num 57) (name ~RESET~/PDI_CLK) (type input))
        (pin (num 58) (name XTAL2_PR0) (type BiDi))
        (pin (num 59) (name XTAL1_PR1) (type BiDi))
        (pin (num 60) (name GND) (type power_in))
        (pin (num 61) (name AVCC) (type power_in))
        (pin (num 62) (name ADC0_AC0_AREF_PA0) (type BiDi))
        (pin (num 63) (name ADC1_AC1_PA1) (type BiDi))
        (pin (num 64) (name ADC2_AC2_PA2) (type BiDi))))
    (libpart (lib dstat-mainboard-cache) (part AVR-PDI)
      (fields
        (field (name Reference) CON)
        (field (name Value) AVR-PDI)
        (field (name Footprint) AVR-ISP-6)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name PDI_DATA) (type BiDi))
        (pin (num 2) (name VCC) (type power_in))
        (pin (num 3) (name ~) (type passive))
        (pin (num 4) (name ~) (type passive))
        (pin (num 5) (name PDI_CLK) (type BiDi))
        (pin (num 6) (name GND) (type power_in))))
    (libpart (lib dstat-mainboard-cache) (part TPS79933)
      (fields
        (field (name Reference) U)
        (field (name Value) TPS79933)
        (field (name Footprint) ~)
        (field (name Datasheet) ~))
      (pins
        (pin (num 1) (name VIN) (type power_in))
        (pin (num 2) (name GND) (type power_in))
        (pin (num 3) (name EN) (type input))
        (pin (num 4) (name NR) (type passive))