You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

synth_waveform.h 3.4KB

10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* Audio Library for Teensy 3.X
  2. * Copyright (c) 2014, Paul Stoffregen, paul@pjrc.com
  3. *
  4. * Development of this audio library was funded by PJRC.COM, LLC by sales of
  5. * Teensy and Audio Adaptor boards. Please support PJRC's efforts to develop
  6. * open source software by purchasing Teensy or other PJRC products.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice, development funding notice, and this permission
  16. * notice shall be included in all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  24. * THE SOFTWARE.
  25. */
  26. #ifndef synth_waveform_h_
  27. #define synth_waveform_h_
  28. #include "AudioStream.h"
  29. #include "arm_math.h"
  30. // waveforms.c
  31. extern "C" {
  32. extern const int16_t AudioWaveformSine[257];
  33. }
  34. #define AUDIO_SAMPLE_RATE_ROUNDED (44118)
  35. #define DELAY_PASSTHRU -1
  36. #define TONE_TYPE_SINE 0
  37. #define TONE_TYPE_SAWTOOTH 1
  38. #define TONE_TYPE_SQUARE 2
  39. #define TONE_TYPE_TRIANGLE 3
  40. class AudioSynthWaveform :
  41. public AudioStream
  42. {
  43. public:
  44. AudioSynthWaveform(void) :
  45. AudioStream(0,NULL),
  46. tone_freq(0), tone_phase(0), tone_incr(0), tone_type(0),
  47. ramp_down(0), ramp_up(0), ramp_length(0)
  48. {
  49. }
  50. void frequency(float t_hi)
  51. {
  52. if (t_hi > AUDIO_SAMPLE_RATE_EXACT / 2 || t_hi < 0.0) return;
  53. tone_incr = ((0x80000000LL*t_hi)/AUDIO_SAMPLE_RATE_EXACT) + 0.5;
  54. }
  55. // If ramp_length is non-zero this will set up
  56. // either a rmap up or a ramp down when a wave
  57. // first starts or when the amplitude is set
  58. // back to zero.
  59. // Note that if the ramp_length is N, the generated
  60. // wave will be N samples longer than when it is not
  61. // ramp
  62. void amplitude(float n) { // 0 to 1.0
  63. if (n < 0) n = 0;
  64. else if (n > 1.0) n = 1.0;
  65. // Ramp code
  66. if(tone_amp && (n == 0)) {
  67. ramp_down = ramp_length;
  68. ramp_up = 0;
  69. last_tone_amp = tone_amp;
  70. }
  71. else if((tone_amp == 0) && n) {
  72. ramp_up = ramp_length;
  73. ramp_down = 0;
  74. // reset the phase when the amplitude was zero
  75. // and has now been increased. Note that this
  76. // happens even if the wave is not ramped
  77. // so that the signal starts at zero
  78. tone_phase = 0;
  79. }
  80. // set new magnitude
  81. tone_amp = n * 32767.0;
  82. }
  83. boolean begin(float t_amp,float t_hi,short t_type);
  84. virtual void update(void);
  85. void set_ramp_length(int16_t r_length);
  86. private:
  87. short tone_amp;
  88. short last_tone_amp;
  89. short tone_freq;
  90. uint32_t tone_phase;
  91. // volatile prevents the compiler optimizing out the frequency function
  92. volatile uint32_t tone_incr;
  93. short tone_type;
  94. uint32_t ramp_down;
  95. uint32_t ramp_up;
  96. uint16_t ramp_length;
  97. };
  98. #endif