commit 4a7a2bed1b7fb3ea2a457db3385d0c42a7301c35 Author: cfif Date: Thu Mar 12 15:32:48 2026 +0300 Начало diff --git a/Inc/SerialPortFrameIO.h b/Inc/SerialPortFrameIO.h new file mode 100644 index 0000000..5cf33d8 --- /dev/null +++ b/Inc/SerialPortFrameIO.h @@ -0,0 +1,20 @@ +// +// Created by cfif on 28.09.22. +// + +#ifndef MODULE_SERIALPORTFRAMEIO_H +#define MODULE_SERIALPORTFRAMEIO_H +#include "stdint.h" + +typedef uint16_t (*SerialPortFrameIOTransaction )(void *env, uint8_t *data, uint16_t size, uint32_t timeout); + +typedef struct { + void *env; + SerialPortFrameIOTransaction receive0; + SerialPortFrameIOTransaction receive1; + SerialPortFrameIOTransaction transmit; + SerialPortFrameIOTransaction transmit1; +} tSerialPortFrameIO; + + +#endif //MODULE_SERIALPORTFRAMEIO_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