From 118399bb09aa27b2c1050d85ce483459634371a2 Mon Sep 17 00:00:00 2001 From: cfif Date: Mon, 2 Jun 2025 13:26:41 +0300 Subject: [PATCH] Init --- 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" + ] + } +}