/* * printable.cpp * * Created on: Aug 30, 2023 * Author: Dario */ #include #include #include #include #include namespace sta { namespace tacos { void onStatemachineInit() { STA_DEBUG_PRINTLN("Starting statemachine task!"); } void onManagerInit() { STA_DEBUG_PRINTLN("Starting manager task!"); Manager::instance()->registerThread(std::make_unique("A"), {0, 1}); Manager::instance()->registerThread(std::make_unique("B"), {0, 2}); Manager::instance()->registerThread(std::make_unique("C"), {0, 3}); } } // namespace tacos } // namespace sta