diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2021-08-01 18:53:09 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2021-08-01 18:53:09 -0400 |
commit | 555749ef5dde558f745f0dc6d00a168d3b3e9d58 (patch) | |
tree | eba6929696b04e4d4fb67271f9dee78bfa6ff2e1 /source/monitor.cpp | |
parent | 123cc4c756cc8a22f66351ab65595c5a20e53e27 (diff) |
8x oversample; other fixes
Diffstat (limited to 'source/monitor.cpp')
-rw-r--r-- | source/monitor.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source/monitor.cpp b/source/monitor.cpp index 335a1eb..08a62d5 100644 --- a/source/monitor.cpp +++ b/source/monitor.cpp @@ -14,9 +14,11 @@ #include "error.hpp" #include "runstatus.hpp" -#include "ch.h" #include "hal.h" +__attribute__((section(".stacks"))) +std::array<char, THD_WORKING_AREA_SIZE(256)> Monitor::m_thread_stack = {}; + void Monitor::begin() { chThdCreateStatic(m_thread_stack.data(), @@ -75,6 +77,3 @@ void Monitor::threadMonitor(void *) } } -__attribute__((section(".stacks"))) -std::array<char, 256> Monitor::m_thread_stack = {}; - |