Add HAL init

This commit is contained in:
Henrik Stickann
2022-04-24 13:41:21 +02:00
parent 867d884d67
commit f940dd9710
2 changed files with 39 additions and 0 deletions

17
include/sta/hal/init.hpp Normal file
View File

@@ -0,0 +1,17 @@
/**
* @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