From b95863aeffd01666c84afcf6dad7b780d2d45389 Mon Sep 17 00:00:00 2001 From: Thomas Schmid Date: Sun, 19 Jun 2022 15:29:39 +0200 Subject: [PATCH] fft_test: remove unused variables Signed-off-by: Thomas Schmid --- firmware/src/applications/fft_test.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/firmware/src/applications/fft_test.cpp b/firmware/src/applications/fft_test.cpp index f52a884..83bda97 100644 --- a/firmware/src/applications/fft_test.cpp +++ b/firmware/src/applications/fft_test.cpp @@ -6,8 +6,6 @@ static std::complex samples[N_SAMPLES]; static std::complex z[N_SAMPLES]; -static double vReal[N_SAMPLES]; -static double vImag[N_SAMPLES]; static uint32_t sample_counter = 0; static unsigned long max_dt = 0; static unsigned long last_sample = 0;