mirror of
https://github.com/radio95-rnt/fm95.git
synced 2026-02-26 19:23:51 +01:00
fix issue in chimer
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
#include "oscillator.h"
|
||||
|
||||
#if USE_NEON
|
||||
#define LPF_ORDER 12 // neon has to have divisable by 4
|
||||
#define LPF_ORDER 20 // neon has to have divisable by 4
|
||||
#else
|
||||
#define LPF_ORDER 10
|
||||
#endif
|
||||
|
||||
@@ -111,7 +111,6 @@ void generate_signal(float *output, int buffer_size, Oscillator *osc, float volu
|
||||
(*elapsed_samples) += 4;
|
||||
}
|
||||
}
|
||||
}
|
||||
#else
|
||||
for (int i = 0; i < buffer_size; i++) {
|
||||
if (*elapsed_samples >= total_samples) {
|
||||
|
||||
Reference in New Issue
Block a user