Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

134 lines
3.9KB

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