|
-
-
- #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 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_phase(0), 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 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 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);
- }
- virtual void update(void);
-
- private:
- short tone_amp;
- short tone_freq;
- uint32_t tone_phase;
-
- volatile uint32_t tone_incr;
- short tone_type;
- int16_t tone_offset;
- const int16_t *arbdata;
- };
-
-
-
- #endif
|