1 #ifndef STM32F103_LIB_SYSTEM_H_
2 #define STM32F103_LIB_SYSTEM_H_
23 static uint32_t
GetMs();
29 static void TicksListener();
34 static uint32_t counter_;
38 static std::unique_ptr<TimerDevice> ticker_;
41 #endif // STM32F103_LIB_SYSTEM_H_
Implements the system clock.
Definition: system.h:12
static void Init()
Performs initialization for system clock.
Definition: system.cpp:10
static uint32_t GetMs()
Retrieves how long the system has been running since power on or reset.
Definition: system.cpp:23