Skip to content

Commit 5d6b2a6

Browse files
authored
Merge branch 'master' into dev/small_buffer
2 parents fd6dfae + 3bf2959 commit 5d6b2a6

11 files changed

Lines changed: 12 additions & 12 deletions

File tree

File renamed without changes.

LICENSE.TXT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ Mozzi - Sound Synthesis Library for Arduino
22

33
Copyright 2012-2024 Tim Barrass and the Mozzi Team
44

5-
Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later. A full copy of this licence is included in these sources as LICENCE.LPGL.
5+
Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later. A full copy of this licence is included in these sources as LICENCE.LGPL.
66

77
Note that some of the provided code examples show the use of separate third-party libraries, which may come with different licences.

config/mozzi_config_documentation.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
* may only be useful for relatively simple sketches. The increased frequency response can also make
120120
* unwanted artefacts of low resolution synthesis calculations more apparent, so it's not always a bonus.
121121
*
122-
* It is highly recommended to keep the audio rate a power of two (16384, 32678, 64536, etc.), as some internal calculations can be highly be optimised for speed, this way.
122+
* It is highly recommended to keep the audio rate a power of two (16384, 32678, 65536, etc.), as some internal calculations can be highly be optimised for speed, this way.
123123
*
124124
* @note
125125
* For compatibility reasons, the option MOZZI_AUDIO_RATE is automatically set to the same value as this option, and you will find some uses of that in old (pre Mozzi 2.0) code examples.

examples/07.Envelopes/Phasemod_Envelope/Phasemod_Envelope.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
1717
*/
1818

19-
#define MOZZI_CONTROL_RATE 640 // quite fast, keeps modulation smooth
19+
#define MOZZI_CONTROL_RATE 64 // quite fast, keeps modulation smooth
2020
#include <Mozzi.h>
2121
#include <Oscil.h>
2222
#include <tables/cos8192_int8.h>

examples/09.Delays/ReverbTank_HIFI/ReverbTank_HIFI.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
2525
*/
2626

27-
#define MOZZI_CONTROL_RATE 640 // quite fast, keeps modulation smooth
27+
#define MOZZI_CONTROL_RATE 64 // quite fast, keeps modulation smooth
2828
#include <Mozzi.h>
2929
#include <ReverbTank.h>
3030
#include <Oscil.h>

examples/09.Delays/ReverbTank_STANDARD/ReverbTank_STANDARD.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
2525
*/
2626

27-
#define MOZZI_CONTROL_RATE 640 // quite fast, keeps modulation smooth
27+
#define MOZZI_CONTROL_RATE 64 // quite fast, keeps modulation smooth
2828
#include <Mozzi.h>
2929
#include <ReverbTank.h>
3030
#include <Oscil.h>

extras/website/examples/examples/07.Envelopes/Phasemod_Envelope/Phasemod_Envelope.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
1717
*/
1818

19-
#define MOZZI_CONTROL_RATE 640 // quite fast, keeps modulation smooth
19+
#define MOZZI_CONTROL_RATE 64 // quite fast, keeps modulation smooth
2020
#include <Mozzi.h>
2121
#include <Oscil.h>
2222
#include <tables/cos8192_int8.h>

extras/website/examples/examples/09.Delays/ReverbTank_HIFI/ReverbTank_HIFI.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
2525
*/
2626

27-
#define MOZZI_CONTROL_RATE 640 // quite fast, keeps modulation smooth
27+
#define MOZZI_CONTROL_RATE 64 // quite fast, keeps modulation smooth
2828
#include <Mozzi.h>
2929
#include <ReverbTank.h>
3030
#include <Oscil.h>

extras/website/examples/examples/09.Delays/ReverbTank_STANDARD/ReverbTank_STANDARD.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
2525
*/
2626

27-
#define MOZZI_CONTROL_RATE 640 // quite fast, keeps modulation smooth
27+
#define MOZZI_CONTROL_RATE 64 // quite fast, keeps modulation smooth
2828
#include <Mozzi.h>
2929
#include <ReverbTank.h>
3030
#include <Oscil.h>

extras/website/learn/configuration/index.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ Not all options are available on all boards. If you want to set an option only f
7373
For an up-to-date list of configuration options available in Mozzi, you will have to look at two places in the API documentation, because not all options are
7474
supported on all platforms:
7575

76-
- [Generic Configuration options](Mozzi/doc/html/group__config.html)
77-
- [Hardware specific info](Mozzi/doc/html/hardware.html)
76+
- [Generic Configuration options](/Mozzi/doc/html/group__config.html)
77+
- [Hardware specific info](/Mozzi/doc/html/hardware.html)

0 commit comments

Comments
 (0)