commit 964a29e6772f2eb81384b254e6d7b5966877b09e Author: cfif Date: Fri Jul 11 13:36:32 2025 +0300 Сборка нового проекта. Добавление основных модулей. diff --git a/inc/SystemMutexInterface.h b/inc/SystemMutexInterface.h new file mode 100644 index 0000000..37873a4 --- /dev/null +++ b/inc/SystemMutexInterface.h @@ -0,0 +1,25 @@ +// +// Created by xemon on 26.09.23. +// + +#ifndef MOTOTERMINAL_MAIN_ONAT435_MUTEXINTERFACE_H +#define MOTOTERMINAL_MAIN_ONAT435_MUTEXINTERFACE_H + +#include "stdbool.h" +#include "stdint.h" + +typedef bool ( *SystemMutex_Operation_acquire )(void *env, int32_t timeout); + +typedef bool ( *SystemMutex_Operation_release )(void *env); + +typedef struct { + void *env; + SystemMutex_Operation_acquire acquire; + SystemMutex_Operation_release release; +} tSystemMutexInterface; + +#define SystemMutex_acquire(ENV, TIMEOUT) (ENV)->acquire((ENV)->env,TIMEOUT) +#define SystemMutex_release(ENV) (ENV)->release((ENV)->env) + + +#endif //MOTOTERMINAL_MAIN_ONAT435_MUTEXINTERFACE_H diff --git a/modular.json b/modular.json new file mode 100644 index 0000000..ed66e77 --- /dev/null +++ b/modular.json @@ -0,0 +1,7 @@ +{ + "cmake": { + "inc_dirs": [ + "inc" + ] + } +}