/* * dummy.cpp * * Created on: 22 Sep 2023 * Author: Dario */ #include #include #include namespace demo { DummyTask::DummyTask(const char* name) : TacosThread(name, osPriorityNormal) { } DummyTask::~DummyTask(){} void DummyTask::init() { } void DummyTask::func() { STA_DEBUG_PRINTLN(this->getName()); // STA_DEBUG_PRINT("Executing "); // STA_DEBUG_PRINTLN(this->getName()); } } // namespace demo