Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

synth_waveform.h 3.8KB

il y a 10 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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 WAVEFORM_SINE 0
  37. #define WAVEFORM_SAWTOOTH 1
  38. #define WAVEFORM_SQUARE 2
  39. #define WAVEFORM_TRIANGLE 3
  40. #define WAVEFORM_ARBITRARY 4
  41. #define WAVEFORM_PULSE 5
  42. // todo: remove these...
  43. #define TONE_TYPE_SINE 0
  44. #define TONE_TYPE_SAWTOOTH 1
  45. #define TONE_TYPE_SQUARE 2
  46. #define TONE_TYPE_TRIANGLE 3
  47. class AudioSynthWaveform :
  48. public AudioStream
  49. {
  50. public:
  51. AudioSynthWaveform(void) :
  52. AudioStream(0,NULL), tone_amp(0), tone_freq(0),
  53. tone_phase(0), tone_width(0.25), tone_incr(0), tone_type(0),
  54. tone_offset(0), arbdata(NULL)
  55. {
  56. }
  57. void frequency(float t_freq) {
  58. if (t_freq < 0.0) t_freq = 0.0;
  59. else if (t_freq > AUDIO_SAMPLE_RATE_EXACT / 2) t_freq = AUDIO_SAMPLE_RATE_EXACT / 2;
  60. tone_incr = (t_freq * (0x80000000LL/AUDIO_SAMPLE_RATE_EXACT)) + 0.5;
  61. }
  62. void phase(float angle) {
  63. if (angle < 0.0) angle = 0.0;
  64. else if (angle > 360.0) {
  65. angle = angle - 360.0;
  66. if (angle >= 360.0) return;
  67. }
  68. tone_phase = angle * (2147483648.0 / 360.0);
  69. }
  70. void amplitude(float n) { // 0 to 1.0
  71. if (n < 0) n = 0;
  72. else if (n > 1.0) n = 1.0;
  73. if ((tone_amp == 0) && n) {
  74. // reset the phase when the amplitude was zero
  75. // and has now been increased.
  76. tone_phase = 0;
  77. }
  78. // set new magnitude
  79. tone_amp = n * 32767.0;
  80. }
  81. void offset(float n) {
  82. if (n < -1.0) n = -1.0;
  83. else if (n > 1.0) n = 1.0;
  84. tone_offset = n * 32767.0;
  85. }
  86. void pulseWidth(float n) { // 0.0 to 1.0
  87. if (n < 0) n = 0;
  88. else if (n > 1.0) n = 1.0;
  89. tone_width = n * 0x7fffffffLL;
  90. // pulse width is stored as the equivalent phase
  91. }
  92. void begin(short t_type) {
  93. tone_phase = 0;
  94. tone_type = t_type;
  95. }
  96. void begin(float t_amp, float t_freq, short t_type) {
  97. amplitude(t_amp);
  98. frequency(t_freq);
  99. begin(t_type);
  100. }
  101. void arbitraryWaveform(const int16_t *data, float maxFreq) {
  102. arbdata = data;
  103. }
  104. virtual void update(void);
  105. private:
  106. short tone_amp;
  107. short tone_freq;
  108. uint32_t tone_phase;
  109. uint32_t tone_width;
  110. // volatile prevents the compiler optimizing out the frequency function
  111. volatile uint32_t tone_incr;
  112. short tone_type;
  113. int16_t tone_offset;
  114. const int16_t *arbdata;
  115. };
  116. #endif