From 24aa8ce75e4521757969f09b6a3e4d82f096d9ac Mon Sep 17 00:00:00 2001 From: cfif Date: Tue, 11 Mar 2025 12:05:56 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D1=85=D0=BE=D0=B4=20?= =?UTF-8?q?=D0=B2=20=D0=BD=D0=BE=D0=B2=D1=83=D1=8E=20=D0=BE=D1=80=D0=B3?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D1=8E?= 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 100755 Inc/SystemDelayInterface.h create mode 100755 modular.json diff --git a/Inc/SystemDelayInterface.h b/Inc/SystemDelayInterface.h new file mode 100755 index 0000000..4e95a7e --- /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); + +uint32_t SystemGetMs(); + +uint32_t SystemMsToTicks(uint32_t ms); + +#endif //MODULE_SYSTEMDELAYINTERFACE_H diff --git a/modular.json b/modular.json new file mode 100755 index 0000000..174bad2 --- /dev/null +++ b/modular.json @@ -0,0 +1,7 @@ +{ + "cmake": { + "inc_dirs": [ + "Inc" + ] + } +}