mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/rtos2-utils.git
synced 2025-06-10 18:15:59 +00:00
29 lines
520 B
C++
29 lines
520 B
C++
/**
|
|
* @file
|
|
* @brief Implementation of startup system task.
|
|
*/
|
|
#ifndef STA_RTOS_SYSTEM_STARTUP_HPP
|
|
#define STA_RTOS_SYSTEM_STARTUP_HPP
|
|
|
|
/**
|
|
* @defgroup STA_RTOS_Startup RTOS Startup
|
|
* @ingroup STA_RTOS_API
|
|
* @brief Initializes rtos functions.
|
|
*/
|
|
|
|
namespace sta
|
|
{
|
|
namespace rtos
|
|
{
|
|
/**
|
|
* @brief Initializes rtos functions.
|
|
*
|
|
* @ingroup STA_RTOS_Startup
|
|
*/
|
|
void initSystem();
|
|
} // namespace rtos
|
|
} // namespace sta
|
|
|
|
|
|
#endif // STA_RTOS_SYSTEM_STARTUP_HPP
|