Files
2024-04-28 16:44:50 +02:00

21 lines
230 B
C++

#pragma once
#include <cstdint>
#include <stm32f0xx_hal.h>
namespace hal
{
inline void init()
{
HAL_Init();
}
struct time
{
static std::uint32_t get_ms()
{
return HAL_GetTick();
}
};
}; // namespace hal