Fixed begin() and end() for sine

master
boblark 2 days ago
parent 4a0477a952
commit ab91082e2c
  1. 3
      synth_sine_f32.cpp

@ -20,6 +20,9 @@ void AudioSynthWaveformSine_F32::update(void) {
uint16_t index, i; uint16_t index, i;
float32_t a, b; float32_t a, b;
if(!enabled)
return;
blockS = AudioStream_F32::allocate_f32(); // Output blocks blockS = AudioStream_F32::allocate_f32(); // Output blocks
if (!blockS) return; if (!blockS) return;

Loading…
Cancel
Save