From 0c848b9abbe490fce8c9e89167c7a4df17863bec Mon Sep 17 00:00:00 2001 From: cfif Date: Fri, 11 Jul 2025 13:36:32 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=B1=D0=BE=D1=80=D0=BA=D0=B0=20=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=BE=D0=B3=D0=BE=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA?= =?UTF-8?q?=D1=82=D0=B0.=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D1=8B?= =?UTF-8?q?=D1=85=20=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D0=B5=D0=B9.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Inc/SystemDelayInterface.h | 18 ++++++++++++++++++ modular.json | 7 +++++++ 2 files changed, 25 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..092558d --- /dev/null +++ b/Inc/SystemDelayInterface.h @@ -0,0 +1,18 @@ +// +// Created by xemon on 8/24/22. +// + +#ifndef MODULE_SYSTEMDELAYINTERFACE_H +#define MODULE_SYSTEMDELAYINTERFACE_H + +#include "stdint.h" + +extern const uint32_t SystemWaitForever; + +void SystemDelayMs(uint32_t ms); + +uint64_t SystemGetMs(); + +uint64_t SystemMsToTicks(uint64_t ms); + +#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" + ] + } +}