commit 79b58bdb3db158fef34752d9526339bbb8c85f23 Author: cfif Date: Fri Jan 24 13:22:32 2025 +0300 Перенос на новую организацию GONEC diff --git a/Src/SystemDelayCmsisRtos.c b/Src/SystemDelayCmsisRtos.c new file mode 100644 index 0000000..edf65cb --- /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 uint64_t SystemWaitForever = osWaitForever; + +void SystemYield() { + osThreadYield(); +} + +void SystemDelayMs(uint64_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..2a41a51 --- /dev/null +++ b/modular.json @@ -0,0 +1,21 @@ +{ + "dep": [ + { + "type": "git", + "provider": "GONEC", + "repo": "CmsisRtosInterface" + }, + { + "type": "git", + "provider": "GONEC", + "repo": "SystemDelayInterface" + } + ], + "cmake": { + "inc_dirs": [ + ], + "srcs": [ + "Src/**.c" + ] + } +} \ No newline at end of file