/* * printable.cpp * * Created on: Aug 30, 2023 * Author: Dario */ #include #include #include #include #include #include #include #include #include namespace sta { namespace tacos { void onStatemachineInit() { } void onManagerInit() { // ###### Register different threads for different states here. ###### // The dummy task runs for state 0. Manager::instance()->registerThread(std::make_shared("State 0"), {0}); Manager::instance()->registerThread(std::make_shared("State 1"), {1}); Manager::instance()->registerThread(std::make_shared(), {0, 1}); } } // namespace tacos } // namespace sta