0
1
mirror of https://github.com/radio95-rnt/fm95.git synced 2026-02-27 03:23:54 +01:00

nug fixes and small tweaks

This commit is contained in:
2025-01-29 14:49:12 +01:00
parent 76580ac4d7
commit 09b30852ab
8 changed files with 53 additions and 55 deletions

View File

@@ -6,7 +6,7 @@ void compute_hilbert_coeffs(float* coeffs, int taps) {
if ((i - mid) % 2 == 0) {
coeffs[i] = 0.0f;
} else {
coeffs[i] = 2.0f / (PI * (i - mid));
coeffs[i] = 2.0f / (M_PI * (i - mid));
}
}
}