aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/source/monitor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/source/monitor.hpp')
-rw-r--r--firmware/source/monitor.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/firmware/source/monitor.hpp b/firmware/source/monitor.hpp
index 93f75e3..500fbbb 100644
--- a/firmware/source/monitor.hpp
+++ b/firmware/source/monitor.hpp
@@ -2,7 +2,7 @@
* @file monitor.hpp
* @brief Manages the device monitoring thread (status LEDs, etc.).
*
- * Copyright (C) 2021 Clyne Sullivan
+ * Copyright (C) 2023 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.
@@ -19,9 +19,15 @@
class Monitor
{
public:
+ /**
+ * Starts the monitor thread.
+ */
static void begin();
private:
+ /**
+ * Updates status LEDs. Does not return.
+ */
static void threadMonitor(void *);
static std::array<char, THD_WORKING_AREA_SIZE(256)> m_thread_stack;