This commit is contained in:
cfif 2025-05-26 14:41:45 +03:00
commit f1a2a4b389
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,20 @@
//
// Created by xemon on 8/24/22.
//
#ifndef MODULE_SYSTEMDELAYINTERFACE_H
#define MODULE_SYSTEMDELAYINTERFACE_H
#include "stdint.h"
extern const uint64_t SystemWaitForever;
void SystemDelayMs(uint64_t ms);
uint64_t SystemGetMs();
uint64_t SystemMsToTicks(uint64_t ms);
void SystemYield();
#endif //MODULE_SYSTEMDELAYINTERFACE_H

7
modular.json Normal file
View File

@ -0,0 +1,7 @@
{
"cmake": {
"inc_dirs": [
"Inc"
]
}
}