commit 79e59b260ffeb59e30f2a6a9d001588d2fb283b7 Author: cfif Date: Fri Jan 24 13:22:33 2025 +0300 Перенос на новую организацию GONEC 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" + ] + } +}