From 51df92a05ae4071d9130c5b99dadaf0daba61ee9 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Wed, 4 Nov 2015 10:50:12 -0800 Subject: [PATCH] Rename baseband_ais -> ais_baseband. So that ais_baseband and ais_application filenames can be sorted near each other. --- firmware/baseband/matched_filter.hpp | 1 - firmware/baseband/proc_fsk.hpp | 2 ++ firmware/common/{baseband_ais.hpp => ais_baseband.hpp} | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename firmware/common/{baseband_ais.hpp => ais_baseband.hpp} (100%) diff --git a/firmware/baseband/matched_filter.hpp b/firmware/baseband/matched_filter.hpp index e6610515..284898b0 100644 --- a/firmware/baseband/matched_filter.hpp +++ b/firmware/baseband/matched_filter.hpp @@ -22,7 +22,6 @@ #ifndef __MATCHED_FILTER_H__ #define __MATCHED_FILTER_H__ -#include "baseband_ais.hpp" #include "utility.hpp" #include diff --git a/firmware/baseband/proc_fsk.hpp b/firmware/baseband/proc_fsk.hpp index 72dd09df..2aae07b7 100644 --- a/firmware/baseband/proc_fsk.hpp +++ b/firmware/baseband/proc_fsk.hpp @@ -39,6 +39,8 @@ #include #include +#include "ais_baseband.hpp" + class FSKProcessor : public BasebandProcessor { public: using payload_t = std::bitset<1024>; diff --git a/firmware/common/baseband_ais.hpp b/firmware/common/ais_baseband.hpp similarity index 100% rename from firmware/common/baseband_ais.hpp rename to firmware/common/ais_baseband.hpp