mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-12 01:25:59 +00:00
18 lines
230 B
C++
18 lines
230 B
C++
/**
|
|
* @brief Global HAL initialization.
|
|
*/
|
|
#ifndef STA_HAL_INIT_HPP
|
|
#define STA_HAL_INIT_HPP
|
|
|
|
|
|
namespace sta
|
|
{
|
|
/**
|
|
* @brief Initialize global HAL objects.
|
|
*/
|
|
void initHAL();
|
|
} // namespace sta
|
|
|
|
|
|
#endif // STA_HAL_INIT_HPP
|