mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-10 16:55:58 +00:00
21 lines
316 B
C++
21 lines
316 B
C++
/**
|
|
* @file
|
|
* @brief Global STM32 HAL initialization.
|
|
*/
|
|
#ifndef STA_CORE_STM32_INIT_HPP
|
|
#define STA_CORE_STM32_INIT_HPP
|
|
|
|
|
|
namespace sta
|
|
{
|
|
/**
|
|
* @brief Initialize global HAL objects.
|
|
*
|
|
* @ingroup sta_core_stm32
|
|
*/
|
|
void initHAL();
|
|
} // namespace sta
|
|
|
|
|
|
#endif // STA_CORE_STM32_INIT_HPP
|