|
-
-
- #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 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_freq(0), tone_phase(0), tone_incr(0), tone_type(0),
- ramp_down(0), ramp_up(0), ramp_length(0)
- {
- }
-
- void frequency(float t_hi)
- {
- if (t_hi > AUDIO_SAMPLE_RATE_EXACT / 2 || t_hi < 0.0) return;
- tone_incr = ((0x80000000LL*t_hi)/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 && (n == 0)) {
- ramp_down = ramp_length;
- ramp_up = 0;
- last_tone_amp = tone_amp;
- }
- else if((tone_amp == 0) && n) {
- ramp_up = ramp_length;
- ramp_down = 0;
-
-
-
-
- tone_phase = 0;
- }
-
- tone_amp = n * 32767.0;
- }
-
- boolean begin(float t_amp,float t_hi,short t_type);
- virtual void update(void);
- void set_ramp_length(int16_t r_length);
-
- private:
- short tone_amp;
- short last_tone_amp;
- short tone_freq;
- uint32_t tone_phase;
-
- volatile uint32_t tone_incr;
- short tone_type;
-
- uint32_t ramp_down;
- uint32_t ramp_up;
- uint16_t ramp_length;
- };
-
-
-
- #endif
|