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.hpp | |
parent | 123cc4c756cc8a22f66351ab65595c5a20e53e27 (diff) |
8x oversample; other fixes
Diffstat (limited to 'source/monitor.hpp')
-rw-r--r-- | source/monitor.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/monitor.hpp b/source/monitor.hpp index 44545c3..93f75e3 100644 --- a/source/monitor.hpp +++ b/source/monitor.hpp @@ -12,6 +12,8 @@ #ifndef STMDSP_MONITOR_HPP #define STMDSP_MONITOR_HPP +#include "ch.h" + #include <array> class Monitor @@ -22,7 +24,7 @@ public: private: static void threadMonitor(void *); - static std::array<char, 256> m_thread_stack; + static std::array<char, THD_WORKING_AREA_SIZE(256)> m_thread_stack; }; #endif // STMDSP_MONITOR_HPP |