Skip to content

Commit 56204dc

Browse files
committed
try to fix CI errors
1 parent 8ec27a5 commit 56204dc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

pad.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -264,14 +264,14 @@ class Pad
264264
static const int ctrl_history_len = 10; // (MUST BE AN EVEN VALUE) control history length; the longer, the more noise reduction but more delay
265265

266266
// band-pass filter coefficients (they are constant and must not be changed)
267-
static constexpr int bp_filt_len = 5;
268-
static constexpr float bp_filt_a[4] = {0.6704579059531744f, -2.930427216820138f, 4.846289804288025f, -3.586239808116909f};
269-
static constexpr float bp_filt_b[5] = {0.01658193166930305f, 0.0f, -0.0331638633386061f, 0.0f, 0.01658193166930305f};
270-
const float rim_bp_low_freq_a[4] = {0.8008026466657076f, -3.348944421626415f, 5.292099516163272f, -3.743650976941178f};
271-
const float rim_bp_low_freq_b[5] = {0.005542717210280682f, 0.0f, -0.01108543442056136f, 0.0f, 0.005542717210280682f};
272-
const float rim_bp_high_freq_a[4] = {0.8008026466657077f, -3.021126408169798f, 4.637919662489649f, -3.377196335768073f};
273-
const float rim_bp_high_freq_b[5] = {0.00554271721028068f, 0.0f, -0.01108543442056136f, 0.0f, 0.00554271721028068f};
274-
const int x_filt_delay = 5;
267+
static inline constexpr int bp_filt_len = 5;
268+
static inline constexpr float bp_filt_a[4] = {0.6704579059531744f, -2.930427216820138f, 4.846289804288025f, -3.586239808116909f};
269+
static inline constexpr float bp_filt_b[5] = {0.01658193166930305f, 0.0f, -0.0331638633386061f, 0.0f, 0.01658193166930305f};
270+
const float rim_bp_low_freq_a[4] = {0.8008026466657076f, -3.348944421626415f, 5.292099516163272f, -3.743650976941178f};
271+
const float rim_bp_low_freq_b[5] = {0.005542717210280682f, 0.0f, -0.01108543442056136f, 0.0f, 0.005542717210280682f};
272+
const float rim_bp_high_freq_a[4] = {0.8008026466657077f, -3.021126408169798f, 4.637919662489649f, -3.377196335768073f};
273+
const float rim_bp_high_freq_b[5] = {0.00554271721028068f, 0.0f, -0.01108543442056136f, 0.0f, 0.00554271721028068f};
274+
const int x_filt_delay = 5;
275275

276276
// ADC noise scaling after band-pass filtering (e.g., for the Teensy ADC the noise has high
277277
// energy at high frequencies which are cut by the band-pass filter) -> hardware dependend parameter

0 commit comments

Comments
 (0)