|
-
-
- #ifndef synth_waveform_h_
- #define synth_waveform_h_
-
- #include "AudioStream.h"
- #include "arm_math.h"
-
-
- extern "C" {
- extern const int16_t AudioWaveformSine[257];
- }
-
- #define AUDIO_SAMPLE_RATE_ROUNDED (44118)
-
- #define DELAY_PASSTHRU -1
-
- #define WAVEFORM_SINE 0
- #define WAVEFORM_SAWTOOTH 1
- #define WAVEFORM_SQUARE 2
- #define WAVEFORM_TRIANGLE 3
- #define WAVEFORM_ARBITRARY 4
- #define WAVEFORM_PULSE 5
- #define WAVEFORM_SAWTOOTH_REVERSE 6
- #define WAVEFORM_SAMPLE_HOLD 7
-
-
- #define TONE_TYPE_SINE 0
- #define TONE_TYPE_SAWTOOTH 1
- #define TONE_TYPE_SQUARE 2
- #define TONE_TYPE_TRIANGLE 3
-
- class AudioSynthWaveform :
- public AudioStream
- {
- public:
- AudioSynthWaveform(void) :
- AudioStream(0,NULL), tone_amp(0), tone_freq(0),
- tone_phase(0), tone_width(0.25), tone_incr(0), tone_type(0),
- tone_offset(0), arbdata(NULL)
- {
- }
-
- void frequency(float t_freq) {
- if (t_freq < 0.0) t_freq = 0.0;
- else if (t_freq > AUDIO_SAMPLE_RATE_EXACT / 2) t_freq = AUDIO_SAMPLE_RATE_EXACT / 2;
- tone_incr = (t_freq * (0x80000000LL/AUDIO_SAMPLE_RATE_EXACT)) + 0.5;
- }
- void phase(float angle) {
- if (angle < 0.0) angle = 0.0;
- else if (angle > 360.0) {
- angle = angle - 360.0;
- if (angle >= 360.0) return;
- }
- tone_phase = angle * (2147483648.0 / 360.0);
- }
- void amplitude(float n) {
- if (n < 0) n = 0;
- else if (n > 1.0) n = 1.0;
- if ((tone_amp == 0) && n) {
-
-
- tone_phase = 0;
- }
-
- tone_amp = n * 32767.0;
- }
- void offset(float n) {
- if (n < -1.0) n = -1.0;
- else if (n > 1.0) n = 1.0;
- tone_offset = n * 32767.0;
- }
- void pulseWidth(float n) {
- if (n < 0) n = 0;
- else if (n > 1.0) n = 1.0;
- tone_width = n * 0x7fffffffLL;
-
- }
- void begin(short t_type) {
- tone_phase = 0;
- tone_type = t_type;
- }
- void begin(float t_amp, float t_freq, short t_type) {
- amplitude(t_amp);
- frequency(t_freq);
- begin(t_type);
- }
- void arbitraryWaveform(const int16_t *data, float maxFreq) {
- arbdata = data;
- }
- virtual void update(void);
-
- private:
- short tone_amp;
- short tone_freq;
- uint32_t tone_phase;
- uint32_t tone_width;
-
- short sample;
-
- volatile uint32_t tone_incr;
- short tone_type;
- int16_t tone_offset;
- const int16_t *arbdata;
- };
-
-
-
- #endif
|