Move STM32 related code to sta-stm32-core repo

This commit is contained in:
Henrik Stickann
2022-05-09 21:19:06 +02:00
commit 460f4e3c25
19 changed files with 1309 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
/**
* @file
* @brief Global STM32 HAL initialization.
*/
#ifndef STA_STM32_INIT_HPP
#define STA_STM32_INIT_HPP
namespace sta
{
/**
* @brief Initialize global HAL objects.
*
* @ingroup stm32
*/
void initHAL();
} // namespace sta
#endif // STA_STM32_INIT_HPP