From f1a2a4b3893b413bc7bea7253fda7a4aca7de1eb Mon Sep 17 00:00:00 2001 From: cfif Date: Mon, 26 May 2025 14:41:45 +0300 Subject: [PATCH] Init --- Inc/SystemDelayInterface.h | 20 ++++++++++++++++++++ modular.json | 7 +++++++ 2 files changed, 27 insertions(+) create mode 100644 Inc/SystemDelayInterface.h create mode 100644 modular.json diff --git a/Inc/SystemDelayInterface.h b/Inc/SystemDelayInterface.h new file mode 100644 index 0000000..3b25e3c --- /dev/null +++ b/Inc/SystemDelayInterface.h @@ -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 diff --git a/modular.json b/modular.json new file mode 100644 index 0000000..174bad2 --- /dev/null +++ b/modular.json @@ -0,0 +1,7 @@ +{ + "cmake": { + "inc_dirs": [ + "Inc" + ] + } +}