commit 7f21d1939736404912c432942f51f973e6e90372 Author: cfif Date: Fri Oct 17 13:26:07 2025 +0300 Обновление diff --git a/Inc/LinIO.h b/Inc/LinIO.h new file mode 100644 index 0000000..8f2b0e0 --- /dev/null +++ b/Inc/LinIO.h @@ -0,0 +1,18 @@ +// +// Created by cfif on 17.11.22. +// + +#ifndef MODULE_LINIO_H +#define MODULE_LINIO_H + +#include "stdint.h" + +typedef uint8_t (* LinIOTransaction )(void *env, uint8_t command, uint32_t timeout); + +typedef struct { + void *env; + LinIOTransaction runCommand; +} tLinIO; + + +#endif //MODULE_LINIO_H diff --git a/modular.json b/modular.json new file mode 100644 index 0000000..9bdd478 --- /dev/null +++ b/modular.json @@ -0,0 +1,7 @@ +{ + "cmake": { + "inc_dirs": [ + "Inc" + ] + } +} \ No newline at end of file