aboutsummaryrefslogtreecommitdiffstats
path: root/source/conversion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/conversion.cpp')
-rw-r--r--source/conversion.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/source/conversion.cpp b/source/conversion.cpp
index 95118f0..c9dc0c9 100644
--- a/source/conversion.cpp
+++ b/source/conversion.cpp
@@ -1,3 +1,14 @@
+/**
+ * @file conversion.cpp
+ * @brief Manages algorithm application (converts input samples to output).
+ *
+ * Copyright (C) 2021 Clyne Sullivan
+ *
+ * Distributed under the GNU GPL v3 or later. You should have received a copy of
+ * the GNU General Public License along with this program.
+ * If not, see <https://www.gnu.org/licenses/>.
+ */
+
#include "conversion.hpp"
#include "periph/adc.hpp"
@@ -18,8 +29,6 @@
#define MSG_FOR_FIRST(msg) (msg & 1)
#define MSG_FOR_MEASURE(msg) (msg > 2)
-time_measurement_t conversion_time_measurement;
-
__attribute__((section(".convdata")))
thread_t *ConversionManager::m_thread_monitor = nullptr;
thread_t *ConversionManager::m_thread_runner = nullptr;