mirror of
https://github.com/DashyFox/StackSport.git
synced 2025-05-04 07:10:17 +00:00
13 lines
155 B
C
13 lines
155 B
C
/*
|
|
* SimpleTimer.c
|
|
*
|
|
* Created on: Aug 25, 2024
|
|
* Author: DashyFox
|
|
*/
|
|
|
|
#include "SimpleTimer.h"
|
|
|
|
uint32_t millis(){
|
|
return HAL_GetTick()*10;
|
|
}
|