Init
This commit is contained in:
commit
34eec71e75
|
|
@ -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();
|
||||
}
|
||||
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue