diff --git a/firmware/controllers/system/thread_controller.h b/firmware/controllers/system/thread_controller.h index dfd37af9b0..e32aaeb41f 100644 --- a/firmware/controllers/system/thread_controller.h +++ b/firmware/controllers/system/thread_controller.h @@ -55,7 +55,7 @@ public: /** * @brief Start the thread. */ - virtual void Start() + void Start() { m_thread = chThdCreateStatic(m_threadstack, sizeof(m_threadstack), m_prio, StaticThreadTaskAdapter, this); m_thread->name = GetName();