├── .gitattributes ├── .gitignore ├── Documentation ├── AK4618VQ_datasheet.pdf ├── AK4618VQ_eval.pdf ├── Atmel-11242-32-bit-Cortex-M7-Microcontroller-SAM-S70Q-SAM-S70N-SAM-S70J_Datasheet.pdf ├── Atmel-44027-32-bit-Cortex-M7-Microcontroller-SAM-E70Q-SAM-E70N-SAM-E70J_.pdf ├── Design Notes.md └── README.md ├── Hardware ├── README.md ├── deprecated │ ├── Tapestry.brd │ ├── Tapestry.pdf │ └── Tapestry.sch ├── tapestry.lbr ├── tsunami.brd └── tsunami.sch ├── LICENSE.md ├── Production ├── 13240-tsunami-panel.v11.brd └── README.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################# 2 | ## SparkFun Useful stuff 3 | ################# 4 | 5 | ## AVR Development 6 | *.eep 7 | *.elf 8 | *.lst 9 | *.lss 10 | *.sym 11 | *.d 12 | *.o 13 | *.srec 14 | *.map 15 | 16 | ## Notepad++ backup files 17 | *.bak 18 | 19 | ## BOM files 20 | *bom* 21 | 22 | ################# 23 | ## Eclipse 24 | ################# 25 | 26 | *.pydevproject 27 | .project 28 | .metadata 29 | bin/ 30 | tmp/ 31 | *.tmp 32 | *.bak 33 | *.swp 34 | *~.nib 35 | local.properties 36 | .classpath 37 | .settings/ 38 | .loadpath 39 | 40 | # External tool builders 41 | .externalToolBuilders/ 42 | 43 | # Locally stored "Eclipse launch configurations" 44 | *.launch 45 | 46 | # CDT-specific 47 | .cproject 48 | 49 | # PDT-specific 50 | .buildpath 51 | 52 | 53 | ############# 54 | ## Eagle 55 | ############# 56 | 57 | # Ignore the board and schematic backup files 58 | *.b#? 59 | *.s#? 60 | *.l#? 61 | 62 | 63 | ################# 64 | ## Visual Studio 65 | ################# 66 | 67 | ## Ignore Visual Studio temporary files, build results, and 68 | ## files generated by popular Visual Studio add-ons. 69 | 70 | # User-specific files 71 | *.suo 72 | *.user 73 | *.sln.docstates 74 | 75 | # Build results 76 | [Dd]ebug/ 77 | [Rr]elease/ 78 | *_i.c 79 | *_p.c 80 | *.ilk 81 | *.meta 82 | *.obj 83 | *.pch 84 | *.pdb 85 | *.pgc 86 | *.pgd 87 | *.rsp 88 | *.sbr 89 | *.tlb 90 | *.tli 91 | *.tlh 92 | *.tmp 93 | *.vspscc 94 | .builds 95 | *.dotCover 96 | 97 | ## TODO: If you have NuGet Package Restore enabled, uncomment this 98 | #packages/ 99 | 100 | # Visual C++ cache files 101 | ipch/ 102 | *.aps 103 | *.ncb 104 | *.opensdf 105 | *.sdf 106 | 107 | # Visual Studio profiler 108 | *.psess 109 | *.vsp 110 | 111 | # ReSharper is a .NET coding add-in 112 | _ReSharper* 113 | 114 | # Installshield output folder 115 | [Ee]xpress 116 | 117 | # DocProject is a documentation generator add-in 118 | DocProject/buildhelp/ 119 | DocProject/Help/*.HxT 120 | DocProject/Help/*.HxC 121 | DocProject/Help/*.hhc 122 | DocProject/Help/*.hhk 123 | DocProject/Help/*.hhp 124 | DocProject/Help/Html2 125 | DocProject/Help/html 126 | 127 | # Click-Once directory 128 | publish 129 | 130 | # Others 131 | [Bb]in 132 | [Oo]bj 133 | sql 134 | TestResults 135 | *.Cache 136 | ClientBin 137 | stylecop.* 138 | ~$* 139 | *.dbmdl 140 | Generated_Code #added for RIA/Silverlight projects 141 | 142 | # Backup & report files from converting an old project file to a newer 143 | # Visual Studio version. Backup files are not needed, because we have git ;-) 144 | _UpgradeReport_Files/ 145 | Backup*/ 146 | UpgradeLog*.XML 147 | 148 | 149 | ############ 150 | ## Windows 151 | ############ 152 | 153 | # Windows image file caches 154 | Thumbs.db 155 | 156 | # Folder config file 157 | Desktop.ini 158 | 159 | 160 | ############# 161 | ## Python 162 | ############# 163 | 164 | *.py[co] 165 | 166 | # Packages 167 | *.egg 168 | *.egg-info 169 | dist 170 | build 171 | eggs 172 | parts 173 | bin 174 | var 175 | sdist 176 | develop-eggs 177 | .installed.cfg 178 | 179 | # Installer logs 180 | pip-log.txt 181 | 182 | # Unit test / coverage reports 183 | .coverage 184 | .tox 185 | 186 | #Translations 187 | *.mo 188 | 189 | #Mr Developer 190 | .mr.developer.cfg 191 | 192 | # Mac crap 193 | .DS_Store 194 | -------------------------------------------------------------------------------- /Documentation/AK4618VQ_datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/5046609544d4c6328bdb667a31630aa630e5f9e2/Documentation/AK4618VQ_datasheet.pdf -------------------------------------------------------------------------------- /Documentation/AK4618VQ_eval.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/5046609544d4c6328bdb667a31630aa630e5f9e2/Documentation/AK4618VQ_eval.pdf -------------------------------------------------------------------------------- /Documentation/Atmel-11242-32-bit-Cortex-M7-Microcontroller-SAM-S70Q-SAM-S70N-SAM-S70J_Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/5046609544d4c6328bdb667a31630aa630e5f9e2/Documentation/Atmel-11242-32-bit-Cortex-M7-Microcontroller-SAM-S70Q-SAM-S70N-SAM-S70J_Datasheet.pdf -------------------------------------------------------------------------------- /Documentation/Atmel-44027-32-bit-Cortex-M7-Microcontroller-SAM-E70Q-SAM-E70N-SAM-E70J_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/5046609544d4c6328bdb667a31630aa630e5f9e2/Documentation/Atmel-44027-32-bit-Cortex-M7-Microcontroller-SAM-E70Q-SAM-E70N-SAM-E70J_.pdf -------------------------------------------------------------------------------- /Documentation/Design Notes.md: -------------------------------------------------------------------------------- 1 | ###Tapestry Design Notes: 2 | 3 | The initial Tapestry audio engine board is designed to be used for development purposes, and provides the basic components 4 | of a high performance audio DSP/Playback engine, including an Atmel SAM S70 Arm Cortex M7 CPU, a microSD socket connected 5 | via SDIO, a high-speed USB port and an AKM multi-channel audio codec providing 4 channels of input and 6 channels of output. 6 | It also includes 10-pin, 0.05" pitch SWD/JTAG connector for use with the Atmel SAM ICE debugger during firmware development. 7 | 8 | The design assumes that most user interface controls and connnectors, audio buffering and connectors, as well as any specific 9 | external power connection and regulation will be contained on a second application specific "UI" board. In this way, the audio 10 | engine can be repurposed for different end-user applications and requirements. 11 | 12 | **Power** 13 | 14 | Vin is assumed to be 5V. The design intent is that 5V can be supplied either through the UI header or from the USB 15 | connection, or both. If both are plugged in, the external 5V Vin will be favored. If a wider input range using a barrel or 16 | other type of power connector is required, the connector itself and any additional regulation can located on the UI board. 17 | 18 | **microSD Socket** 19 | 20 | The microSD card interfaces to the CPU using the 4-bit wide SDIO interface rather than SPI. The Atmel SAM 70 CPU is able 21 | to recognize high speed cards and run the SDIO clock at 50Mhz, making the layout of the card and routing of the SDIO traces 22 | somewhat critical. SDIO signals and traces should be treated as high frequency. 23 | 24 | **Codec** 25 | 26 | The codec interfaces to the CPU using the SAM S70 SAI resource in TDM mode for audio, and I2C for control. The design allows 27 | for up to 4 audio input channels and 6 audio output channels. A dual-row, 20-pin connector JP4 provides the ac coupled audio 28 | input and output connections to and from the codec. Any additional audio signal conditioning / buffering, as well as the 29 | desired audio connectors are assumed to be on the UI board. 30 | 31 | **User and Control Interface** 32 | 33 | All user interface/control signals, including Vin, are via a dual-row 26 pin header JP3. There are 16 GPIO, 8 of which 34 | can also be configured as analog inputs or outputs. The intent is that alternate firmware versions can use these lines to 35 | interface to trigger or gate inputs, and/or user interface controls such as analog pots, encoders, LEDs, etc. There are also 36 | 2 UARTs (Tx and Rx), one of which will be dedicated for MIDI (with the MIDI opto-isolator, related components and connectors 37 | being located on the UI board.) 38 | 39 | **Test Points** 40 | 41 | Test points are provided for the TDM signals between the SAM S70 and codec. Test points are also provide for a subset of 42 | the SDIO signals to facilitate timing SD card access. A single general purpose test point is also provided for use by the 43 | firmware. -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- 1 | SparkFun Documentation 2 | ======================= 3 | 4 | This directory should include any necessary datasheets, example number crunching, etc. -------------------------------------------------------------------------------- /Hardware/README.md: -------------------------------------------------------------------------------- 1 | SparkFun Design Files 2 | ===================================== 3 | 4 | The .sch and .brd files hare are Eagle CAD schematic and PCB design files from SparkFun Electronics. 5 | A freeware version of Eagle can be found [here](http://www.cadsoftusa.com/download-eagle/freeware/). 6 | 7 | -------------------------------------------------------------------------------- /Hardware/deprecated/Tapestry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/5046609544d4c6328bdb667a31630aa630e5f9e2/Hardware/deprecated/Tapestry.pdf -------------------------------------------------------------------------------- /Hardware/tapestry.lbr: -------------------------------------------------------------------------------- 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 | <b>LQFP 100</b><p> 159 | Source: 6120s.pdf 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 | >NAME 272 | >VALUE 273 | R 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 | <b>LQFP48</b> VXH48A<p> 444 | Auto generated by <i>make-symbol-device-package-bsdl.ulp Rev. 34</i><br> 445 | Source: http://www.national.com/ds/DP/DP83848VYB.pdf 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 | >NAME 501 | >VALUE 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 | >NAME 609 | >VALUE 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 | >NAME 676 | >VALUE 677 | 678 | 679 | 680 | 681 | 682 | 683 | 684 | 685 | >NAME 686 | >VALUE 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 | >NAME 842 | >VALUE 843 | 844 | 845 | 846 | 847 | 848 | 849 | 850 | 851 | 852 | 853 | >VALUE 854 | 1 855 | 2 856 | 857 | 858 | 859 | 860 | 861 | >NAME 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 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | SparkFun License Information 2 | ============================ 3 | 4 | SparkFun uses two different licenses for our files — one for hardware and one for code. 5 | 6 | Hardware 7 | --------- 8 | 9 | **SparkFun hardware is released under [Creative Commons Share-alike 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/).** 10 | 11 | Note: This is a human-readable summary of (and not a substitute for) the [license](http://creativecommons.org/licenses/by-sa/4.0/legalcode). 12 | 13 | You are free to: 14 | 15 | Share — copy and redistribute the material in any medium or format 16 | Adapt — remix, transform, and build upon the material 17 | for any purpose, even commercially. 18 | The licensor cannot revoke these freedoms as long as you follow the license terms. 19 | Under the following terms: 20 | 21 | Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use. 22 | ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original. 23 | No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits. 24 | Notices: 25 | 26 | You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation. 27 | No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material. 28 | 29 | 30 | Code 31 | -------- 32 | 33 | Please refer to [Robertsonics](Robertsonics.com) for more information regarding Tsunami firmware. 34 | -------------------------------------------------------------------------------- /Production/README.md: -------------------------------------------------------------------------------- 1 | SparkFun Production Files 2 | ========================================= 3 | 4 | 5 | These are the production files SparkFun uses for printing PCBs. 6 | 7 | 8 | License Information 9 | ------------------- 10 | This product is open source! 11 | 12 | The hardware is released under [Creative Commons ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/). 13 | 14 | Please use, reuse, and modify these files as you see fit. Please maintain attribution to SparkFun Electronics and release anything derivative under the same license. 15 | 16 | Distributed as-is; no warranty is given. 17 | 18 | - Your friends at SparkFun. 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | _Note: This repository is for the Tsunami Super WAV Trigger v1.1. For v1.2, check out the [Tsunami Super WAV Trigger (Qwiic) v1.2 GitHub repository](https://github.com/sparkfun/SparkFun_Tsunami_Super_WAV_Trigger_Qwiic)._ 2 | 3 | Tsunami Super WAV Trigger 4 | ======================================== 5 | 6 | [![Tsunami Super WAV Trigger](https://cdn.sparkfun.com//assets/parts/1/1/3/9/6/13810-01.jpg)](https://www.sparkfun.com/products/retired/13810) 7 | 8 | [*Tsunami Super WAV Trigger (WIG-13810)*](https://www.sparkfun.com/products/retired/13810) 9 | 10 | Tsunami is a polyphonic Wav file player with 4 stereo (or 8 mono) outputs. Wav files can be triggered using the 16 onboard contacts, via MIDI, or using a serial connection to a PC or other microcontroller. 11 | 12 | Repository Contents 13 | ------------------- 14 | 15 | * **/Documentation** - Data sheets, additional product information 16 | * **/Hardware** - Eagle design files (.brd, .sch) 17 | * **/Production** - Production panel files (.brd) 18 | 19 | Documentation 20 | -------------- 21 | * **[Hookup Guide](https://learn.sparkfun.com/tutorials/tsunami-hookup-guide)** - Basic hookup guide for Tsunami v1.1. 22 | * **[Official User Guide](https://cdn.sparkfun.com/assets/e/9/9/8/e/Tsunami_UserGuide_20230114.pdf)** - More detailed user guide, hosted by Robertsonics. 23 | * **[Official Downloads Page](http://robertsonics.com/downloads/)** - Download supporting files, including firmware updates and the configuration utility. 24 | * **[SparkFun Fritzing repo](https://github.com/sparkfun/Fritzing_Parts)** - Fritzing diagrams for SparkFun products. 25 | * **[SparkFun 3D Model repo](https://github.com/sparkfun/3D_Models)** - 3D models of SparkFun products. 26 | 27 | Product Versions 28 | ---------------- 29 | * [WIG-13810](https://www.sparkfun.com/products/13810) - First hardware revision. 30 | 31 | Version History 32 | --------------- 33 | * [Initial production Release](https://github.com/sparkfun/tsunami/commit/f42b14d72773535e83374cde73f2ca3f25164abb) - V11 hardware revision. 34 | 35 | License Information 36 | ------------------- 37 | 38 | The hardware design of Tsunami is _**open source**_! 39 | 40 | Please review the LICENSE.md file for license information. 41 | 42 | If you have any questions or concerns on licensing, please contact techsupport@sparkfun.com. 43 | 44 | Distributed as-is; no warranty is given. 45 | 46 | - Your friends at SparkFun. 47 | 48 | Authors 49 | ---- 50 | 51 | Jamie Robertson @ Robertsonics & Byron Jacquot @ SparkFun Electronics 52 | --------------------------------------------------------------------------------