| andrewm@378 | 1 Bela: an embedded platform for ultra-low latency audio and sensor processing | 
| andrewm@378 | 2 http://bela.io | 
| andrewm@378 | 3 | 
| andrewm@378 | 4 A project of the Augmented Instruments Laboratory within the | 
| andrewm@378 | 5 Centre for Digital Music at Queen Mary University of London. | 
| andrewm@378 | 6 http://www.eecs.qmul.ac.uk/~andrewm | 
| andrewm@378 | 7 | 
| andrewm@378 | 8 (c) 2016 Augmented Instruments Laboratory: Andrew McPherson, | 
| andrewm@378 | 9          Astrid Bin, Liam Donovan, Christian Heinrichs, Robert Jack, | 
| andrewm@378 | 10 		 Giulio Moro, Laurel Pardue, Victor Zappi. All rights reserved. | 
| andrewm@378 | 11 | 
| andrewm@378 | 12 The Bela software is distributed under the GNU Lesser General Public License | 
| andrewm@378 | 13 (LGPL 3.0), available here: https://www.gnu.org/licenses/lgpl-3.0.txt | 
| andrewm@378 | 14 | 
| andrewm@378 | 15 The Bela hardware designs are released under a Creative Commons | 
| andrewm@378 | 16 Attribution-ShareAlike 3.0 Unported license (CC BY-SA 3.0). Details here: | 
| andrewm@378 | 17 https://creativecommons.org/licenses/by-sa/3.0/ | 
| andrewm@378 | 18 | 
| andrewm@378 | 19 Bela is provided "as is" without any express or implied warranties. | 
| andrewm@378 | 20 | 
| andrewm@378 | 21 License and copyright details for dependencies are below. | 
| andrewm@378 | 22 | 
| andrewm@378 | 23 =============================== prussdrv =============================== | 
| andrewm@378 | 24 | 
| andrewm@378 | 25 Bela uses libprussdrv (also known as am335x_pru_package) by Texas Instruments. | 
| andrewm@378 | 26 Source available at https://github.com/beagleboard/am335x_pru_package | 
| andrewm@378 | 27 | 
| andrewm@378 | 28 Further information at http://elinux.org/Ti_AM33XX_PRUSSv2 | 
| andrewm@378 | 29 | 
| andrewm@378 | 30 ================================= Ne10 ================================= | 
| andrewm@378 | 31 | 
| andrewm@378 | 32 Selected Bela examples use projectNe10 by ARM, which is distributed | 
| andrewm@378 | 33 under a BSD 3-Clause license. Full source available at | 
| andrewm@378 | 34 https://github.com/projectNe10 | 
| andrewm@378 | 35 | 
| andrewm@378 | 36 Copyright notice follows: | 
| andrewm@378 | 37 | 
| andrewm@378 | 38 /* | 
| andrewm@378 | 39  *  Copyright 2012-15 ARM Limited and Contributors. | 
| andrewm@378 | 40  *  All rights reserved. | 
| andrewm@378 | 41  * | 
| andrewm@378 | 42  *  Redistribution and use in source and binary forms, with or without | 
| andrewm@378 | 43  *  modification, are permitted provided that the following conditions are met: | 
| andrewm@378 | 44  *    * Redistributions of source code must retain the above copyright | 
| andrewm@378 | 45  *      notice, this list of conditions and the following disclaimer. | 
| andrewm@378 | 46  *    * Redistributions in binary form must reproduce the above copyright | 
| andrewm@378 | 47  *      notice, this list of conditions and the following disclaimer in the | 
| andrewm@378 | 48  *      documentation and/or other materials provided with the distribution. | 
| andrewm@378 | 49  *    * Neither the name of ARM Limited nor the | 
| andrewm@378 | 50  *      names of its contributors may be used to endorse or promote products | 
| andrewm@378 | 51  *      derived from this software without specific prior written permission. | 
| andrewm@378 | 52  * | 
| andrewm@378 | 53  *  THIS SOFTWARE IS PROVIDED BY ARM LIMITED AND CONTRIBUTORS "AS IS" AND | 
| andrewm@378 | 54  *  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 
| andrewm@378 | 55  *  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 
| andrewm@378 | 56  *  DISCLAIMED. IN NO EVENT SHALL ARM LIMITED AND CONTRIBUTORS BE LIABLE FOR ANY | 
| andrewm@378 | 57  *  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 
| andrewm@378 | 58  *  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 
| andrewm@378 | 59  *  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 
| andrewm@378 | 60  *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 
| andrewm@378 | 61  *  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | 
| andrewm@378 | 62  *  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 
| andrewm@378 | 63  */ | 
| andrewm@378 | 64 | 
| andrewm@378 | 65 /* | 
| andrewm@378 | 66  * See: http://opensource.org/licenses/BSD-3-Clause for template | 
| giuliomoro@382 | 67 */ | 
| giuliomoro@382 | 68 | 
| giuliomoro@382 | 69 ================================= libpd ================================= | 
| giuliomoro@382 | 70 | 
| giuliomoro@382 | 71 Selected Bela examples use libpd. | 
| giuliomoro@382 | 72 Full source available at https://github.com/libpd/libpd | 
| giuliomoro@382 | 73 | 
| giuliomoro@382 | 74 Copyright notice follows: | 
| giuliomoro@382 | 75 | 
| giuliomoro@382 | 76 This software is copyrighted by Miller Puckette and others.  The following | 
| giuliomoro@382 | 77 terms (the "Standard Improved BSD License") apply to all files associated with | 
| giuliomoro@382 | 78 the software unless explicitly disclaimed in individual files: | 
| giuliomoro@382 | 79 | 
| giuliomoro@382 | 80 Redistribution and use in source and binary forms, with or without | 
| giuliomoro@382 | 81 modification, are permitted provided that the following conditions are | 
| giuliomoro@382 | 82 met: | 
| giuliomoro@382 | 83 | 
| giuliomoro@382 | 84 1. Redistributions of source code must retain the above copyright | 
| giuliomoro@382 | 85    notice, this list of conditions and the following disclaimer. | 
| giuliomoro@382 | 86 2. Redistributions in binary form must reproduce the above | 
| giuliomoro@382 | 87    copyright notice, this list of conditions and the following | 
| giuliomoro@382 | 88    disclaimer in the documentation and/or other materials provided | 
| giuliomoro@382 | 89    with the distribution. | 
| giuliomoro@382 | 90 3. The name of the author may not be used to endorse or promote | 
| giuliomoro@382 | 91    products derived from this software without specific prior | 
| giuliomoro@382 | 92    written permission. | 
| giuliomoro@382 | 93 | 
| giuliomoro@382 | 94 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY | 
| giuliomoro@382 | 95 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | 
| giuliomoro@382 | 96 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | 
| giuliomoro@382 | 97 PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR | 
| giuliomoro@382 | 98 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | 
| giuliomoro@382 | 99 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | 
| giuliomoro@382 | 100 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 
| giuliomoro@382 | 101 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 
| giuliomoro@382 | 102 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | 
| giuliomoro@382 | 103 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING | 
| giuliomoro@382 | 104 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | 
| giuliomoro@382 | 105 THE POSSIBILITY OF SUCH DAMAGE. |