diff options
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 |