├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/AK4618VQ_datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Documentation/AK4618VQ_datasheet.pdf -------------------------------------------------------------------------------- /Documentation/AK4618VQ_eval.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/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/HEAD/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/HEAD/Documentation/Atmel-44027-32-bit-Cortex-M7-Microcontroller-SAM-E70Q-SAM-E70N-SAM-E70J_.pdf -------------------------------------------------------------------------------- /Documentation/Design Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Documentation/Design Notes.md -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Documentation/README.md -------------------------------------------------------------------------------- /Hardware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Hardware/README.md -------------------------------------------------------------------------------- /Hardware/deprecated/Tapestry.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Hardware/deprecated/Tapestry.brd -------------------------------------------------------------------------------- /Hardware/deprecated/Tapestry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Hardware/deprecated/Tapestry.pdf -------------------------------------------------------------------------------- /Hardware/deprecated/Tapestry.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Hardware/deprecated/Tapestry.sch -------------------------------------------------------------------------------- /Hardware/tapestry.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Hardware/tapestry.lbr -------------------------------------------------------------------------------- /Hardware/tsunami.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Hardware/tsunami.brd -------------------------------------------------------------------------------- /Hardware/tsunami.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Hardware/tsunami.sch -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Production/13240-tsunami-panel.v11.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Production/13240-tsunami-panel.v11.brd -------------------------------------------------------------------------------- /Production/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/Production/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/tsunami/HEAD/README.md --------------------------------------------------------------------------------