mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-08-06 17:47:34 +00:00
Added reworked manager / statemachine tasks, thread implementation and new directory layout
This commit is contained in:
31
Tacos/include/sta/tacos/startup.hpp
Normal file
31
Tacos/include/sta/tacos/startup.hpp
Normal file
@@ -0,0 +1,31 @@
|
||||
/*
|
||||
* startup.hpp
|
||||
*
|
||||
* Created on: 22 Sep 2023
|
||||
* Author: Dario
|
||||
*/
|
||||
|
||||
#ifndef INCLUDE_STA_TACOS_STARTUP_HPP_
|
||||
#define INCLUDE_STA_TACOS_STARTUP_HPP_
|
||||
|
||||
namespace sta
|
||||
{
|
||||
namespace tacos
|
||||
{
|
||||
/**
|
||||
* @brief Function that is called before the statemachine task is started.
|
||||
* Override it to adjust the statemachine to your specifications.
|
||||
*/
|
||||
void onStatemachineInit();
|
||||
|
||||
/**
|
||||
* @brief Function that is called before the manager task is started.
|
||||
* Override it to adjust the manager to your specifications.
|
||||
*/
|
||||
void onManagerInit();
|
||||
} // namespace tacos
|
||||
} // namespace sta
|
||||
|
||||
|
||||
|
||||
#endif /* INCLUDE_STA_TACOS_STARTUP_HPP_ */
|
Reference in New Issue
Block a user