From 512e8f88a9c42cc5c83d00f4c3edc7647ae460d6 Mon Sep 17 00:00:00 2001 From: wb2osz Date: Mon, 26 Oct 2020 20:41:49 -0400 Subject: [PATCH] Avoid compiler error. --- src/demod_afsk.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/demod_afsk.c b/src/demod_afsk.c index 9cbeff1..7a007d1 100644 --- a/src/demod_afsk.c +++ b/src/demod_afsk.c @@ -67,7 +67,7 @@ /* No benefit for regular PC. */ /* Should help with microcomputer platform. */ - +#if 0 // not using anymore __attribute__((hot)) __attribute__((always_inline)) static inline float z (float x, float y) { @@ -81,6 +81,7 @@ static inline float z (float x, float y) return (y * .941246f + x * .41f); } } +#endif /* Add sample to buffer and shift the rest down. */