mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-06-12 01:25:59 +00:00
36 lines
674 B
C++
36 lines
674 B
C++
/*
|
|
* printable.cpp
|
|
*
|
|
* Created on: Aug 30, 2023
|
|
* Author: Dario
|
|
*/
|
|
|
|
|
|
#include <sta/tacos/startup.hpp>
|
|
#include <sta/debug/debug.hpp>
|
|
|
|
#include <sta/tacos/manager.hpp>
|
|
#include <tasks/dummy.hpp>
|
|
|
|
|
|
namespace sta
|
|
{
|
|
namespace tacos
|
|
{
|
|
void onStatemachineInit()
|
|
{
|
|
STA_DEBUG_PRINTLN("Starting statemachine task!");
|
|
}
|
|
|
|
void onManagerInit()
|
|
{
|
|
STA_DEBUG_PRINTLN("Starting manager task!");
|
|
|
|
// Manager::instance()->registerThread(demo::DummyTask("A"), {0, 1});
|
|
// Manager::instance()->registerThread(demo::DummyTask("B"), {1, 2});
|
|
// Manager::instance()->registerThread(demo::DummyTask("C"), {2, 3});
|
|
}
|
|
} // namespace tacos
|
|
} // namespace sta
|
|
|