This commit is contained in:
Sheikah
2023-01-27 17:55:15 +08:00
parent 7cca8f153a
commit 423e3f3571
5 changed files with 27 additions and 1 deletions

6
Core/Inc/time.h Normal file
View File

@ -0,0 +1,6 @@
#pragma once
#include <stdint.h>
int32_t ticks_ms();
int32_t ticks_add(int32_t t1, int32_t delta);
int32_t ticks_diff(int32_t t1, int32_t t2);