Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AudioOutput.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

#ifndef AUDIOOUTPUT_H
#define AUDIOOUTPUT_H
#include <FixMath.h>
#include "mozzi_fixmath.h"

/** The type used to store a single channel of a single frame, internally. For compatibility with earlier versions of Mozzi this is defined as int.
* If you do not care about keeping old sketches working, you may be able to save some RAM by using int16_t, instead (on boards where int is larger
Expand Down
2 changes: 1 addition & 1 deletion Line.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#include <Arduino.h>

#include<FixMath.h>
#include "mozzi_fixmath.h"

/** For linear changes with a minimum of calculation at each step. For instance,
you can use Line to make an oscillator glide from one frequency to another,
Expand Down
1 change: 0 additions & 1 deletion MetaOscil.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

#include "Oscil.h"
#include "mozzi_fixmath.h"
#include <FixMath.h>


/**
Expand Down
1 change: 0 additions & 1 deletion Oscil.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#include "Arduino.h"
#include "MozziHeadersOnly.h"
#include "mozzi_fixmath.h"
#include "FixMath.h"
#include "mozzi_pgmspace.h"

#ifdef OSCIL_DITHER_PHASE
Expand Down
1 change: 1 addition & 0 deletions mozzi_fixmath.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
#define FIXEDMATH_H_

#include <Arduino.h>
#include <FixMath.h>

/** @defgroup fixmath Fast integer based fixed-point arithmetic

Expand Down