From 10bce4b845442586a8d23db3ad087e33b27788fa Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Sun, 3 Jan 2016 16:58:08 -0800 Subject: [PATCH] Clean up #includes. --- firmware/baseband/proc_am_audio.cpp | 2 ++ firmware/baseband/proc_am_audio.hpp | 3 --- firmware/baseband/proc_nfm_audio.hpp | 2 -- firmware/baseband/proc_wfm_audio.hpp | 2 -- 4 files changed, 2 insertions(+), 7 deletions(-) diff --git a/firmware/baseband/proc_am_audio.cpp b/firmware/baseband/proc_am_audio.cpp index c6fc3212c..ce11aaf14 100644 --- a/firmware/baseband/proc_am_audio.cpp +++ b/firmware/baseband/proc_am_audio.cpp @@ -21,6 +21,8 @@ #include "proc_am_audio.hpp" +#include + void NarrowbandAMAudio::execute(const buffer_c8_t& buffer) { if( !configured ) { return; diff --git a/firmware/baseband/proc_am_audio.hpp b/firmware/baseband/proc_am_audio.hpp index f70885132..172fab616 100644 --- a/firmware/baseband/proc_am_audio.hpp +++ b/firmware/baseband/proc_am_audio.hpp @@ -24,17 +24,14 @@ #include "baseband_processor.hpp" -#include "channel_decimator.hpp" #include "dsp_decimate.hpp" #include "dsp_demodulate.hpp" -#include "dsp_fir_taps.hpp" #include "dsp_iir.hpp" #include "dsp_iir_config.hpp" #include "spectrum_collector.hpp" #include -#include class NarrowbandAMAudio : public BasebandProcessor { public: diff --git a/firmware/baseband/proc_nfm_audio.hpp b/firmware/baseband/proc_nfm_audio.hpp index 1dd3782f9..87e056935 100644 --- a/firmware/baseband/proc_nfm_audio.hpp +++ b/firmware/baseband/proc_nfm_audio.hpp @@ -30,8 +30,6 @@ #include "dsp_iir_config.hpp" #include "dsp_squelch.hpp" -#include "message.hpp" - #include "spectrum_collector.hpp" class NarrowbandFMAudio : public BasebandProcessor { diff --git a/firmware/baseband/proc_wfm_audio.hpp b/firmware/baseband/proc_wfm_audio.hpp index 79b7969dc..9ef62fc8d 100644 --- a/firmware/baseband/proc_wfm_audio.hpp +++ b/firmware/baseband/proc_wfm_audio.hpp @@ -24,10 +24,8 @@ #include "baseband_processor.hpp" -#include "channel_decimator.hpp" #include "dsp_decimate.hpp" #include "dsp_demodulate.hpp" -#include "dsp_fir_taps.hpp" #include "dsp_iir.hpp" #include "dsp_iir_config.hpp"