We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 542c7c9 commit e37502cCopy full SHA for e37502c
shared-module/audiomixer/Mixer.c
@@ -192,7 +192,7 @@ static void mix_down_one_voice(audiomixer_mixer_obj_t *self,
192
uint32_t *src = voice->remaining_buffer;
193
194
// Get the current level from the BlockInput. These may change at run time so you need to do bounds checking if required.
195
- shared_bindings_synthio_lfo_tick(self->sample_rate); //, n / self->channel_count); // Requires #9776
+ shared_bindings_synthio_lfo_tick(self->sample_rate);
196
uint16_t level = (uint16_t)(synthio_block_slot_get_limited(&voice->level, MICROPY_FLOAT_CONST(0.0), MICROPY_FLOAT_CONST(1.0)) * (1 << 15));
197
198
// First active voice gets copied over verbatim.
0 commit comments