From 52771efdbe65fa0869e210a8bec0c46a767e7ed4 Mon Sep 17 00:00:00 2001 From: cfif Date: Fri, 11 Jul 2025 13:36:32 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=B1=D0=BE=D1=80=D0=BA=D0=B0=20=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=BE=D0=B3=D0=BE=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA?= =?UTF-8?q?=D1=82=D0=B0.=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=81=D0=BD=D0=BE=D0=B2=D0=BD=D1=8B?= =?UTF-8?q?=D1=85=20=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D0=B5=D0=B9.?= 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..4069c3f --- /dev/null +++ b/modular.json @@ -0,0 +1,21 @@ +{ + "dep": [ + { + "type": "git", + "provider": "HVAC", + "repo": "CmsisRtosInterface" + }, + { + "type": "git", + "provider": "HVAC", + "repo": "SystemDelayInterface" + } + ], + "cmake": { + "inc_dirs": [ + ], + "srcs": [ + "Src/**.c" + ] + } +} \ No newline at end of file