From 5ba2d3455f77b55443f714d47f79fda1024c73f3 Mon Sep 17 00:00:00 2001 From: cfif Date: Tue, 23 Sep 2025 17:12:43 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B0=D1=87=D0=B0=D0=BB=D0=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Src/SystemDelayCmsisRtos.c | 26 ++++++++++++++++++++++++++ modular.json | 21 +++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 Src/SystemDelayCmsisRtos.c create mode 100644 modular.json diff --git a/Src/SystemDelayCmsisRtos.c b/Src/SystemDelayCmsisRtos.c new file mode 100644 index 0000000..3a072f5 --- /dev/null +++ b/Src/SystemDelayCmsisRtos.c @@ -0,0 +1,26 @@ +// +// Created by xemon on 29.08.22. +// +#include +#include "SystemDelayInterface.h" +#include "systickcounter.h" + +const uint32_t SystemWaitForever = osWaitForever; + +void SystemYield() { + osThreadYield(); +} + +void SystemDelayMs(uint32_t ms) { + osDelay(SystemMsToTicks(ms)); +} + +uint64_t SystemMsToTicks(uint64_t ms) { + return (ms * osKernelGetTickFreq()) / 1000; +} + +uint64_t SystemGetMs() { +// return (osKernelGetTickCount() * osKernelGetTickFreq()) / 1000; +// return (__sys_tick_counter * osKernelGetTickFreq()) / 1000; + return __sys_tick_counter; +} \ No newline at end of file diff --git a/modular.json b/modular.json new file mode 100644 index 0000000..78c3b5d --- /dev/null +++ b/modular.json @@ -0,0 +1,21 @@ +{ + "dep": [ + { + "type": "git", + "provider": "HVAC_DEV", + "repo": "CmsisRtosInterface" + }, + { + "type": "git", + "provider": "HVAC_DEV", + "repo": "SystemDelayInterface" + } + ], + "cmake": { + "inc_dirs": [ + ], + "srcs": [ + "Src/**.c" + ] + } +} \ No newline at end of file