This commit is contained in:
cfif 2025-06-02 14:32:56 +03:00
commit 34eec71e75
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,17 @@
//
// Created by xemon on 29.08.22.
//
#include <cmsis_os.h>
#include "SystemDelayInterface.h"
#include "systickcounter.h"
#include "ext_telematica.h"
const uint32_t SystemWaitForever = osWaitForever;
void SystemDelayMs(uint32_t ms) {
EXT_ENV_TELE.osFreeRTOS.SystemDelayMs(ms);
}
uint64_t SystemGetMs() {
return EXT_ENV_TELE.osFreeRTOS.SystemGetMs();
}

21
modular.json Normal file
View File

@ -0,0 +1,21 @@
{
"dep": [
{
"type": "git",
"provider": "Smart_Components_Aurus",
"repo": "CmsisRtosInterface"
},
{
"type": "git",
"provider": "Smart_Components_Aurus",
"repo": "SystemDelayInterface"
}
],
"cmake": {
"inc_dirs": [
],
"srcs": [
"Src/**.c"
]
}
}