commit 8d0a2c25aa3050f6cb204936a45bc4377b1be4af Author: cfif Date: Wed Dec 4 13:10:49 2024 +0300 Init diff --git a/Inc/SystemDelayInterface.h b/Inc/SystemDelayInterface.h new file mode 100644 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 100644 index 0000000..174bad2 --- /dev/null +++ b/modular.json @@ -0,0 +1,7 @@ +{ + "cmake": { + "inc_dirs": [ + "Inc" + ] + } +}