BlockBiquad takes kind, f0 (center frequency) & Q (sharpness) block type arguments and calculates the actual filter coefficients every frame. This allows the filter characteristics f0 and Q to be changed dynamically from LFOs & arithmetic blocks. A new manual test demonstrates this on a host computer, playing a simple tone that is dynamically filtered.
20 lines
592 B
C
20 lines
592 B
C
// This file is part of the CircuitPython project: https://circuitpython.org
|
|
//
|
|
// SPDX-FileCopyrightText: Copyright (c) 2023 Jeff Epler for Adafruit Industries
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include "py/obj.h"
|
|
|
|
#define BIQUAD_SHIFT (15)
|
|
|
|
typedef struct {
|
|
int32_t a1, a2, b0, b1, b2;
|
|
int32_t x[2], y[2];
|
|
} biquad_filter_state;
|
|
|
|
void synthio_biquad_filter_assign(biquad_filter_state *st, mp_obj_t biquad_obj);
|
|
void synthio_biquad_filter_reset(biquad_filter_state *st);
|
|
void synthio_biquad_filter_samples(biquad_filter_state *st, int32_t *buffer, size_t n_samples);
|