commit 00699c221b87e4258c3adc8205971166d22137c8 Author: cfif Date: Tue Sep 23 17:12:43 2025 +0300 Начало diff --git a/Inc/SerialPortIO.h b/Inc/SerialPortIO.h new file mode 100644 index 0000000..eb2615f --- /dev/null +++ b/Inc/SerialPortIO.h @@ -0,0 +1,18 @@ +// +// Created by cfif on 28.09.22. +// + +#ifndef MODULE_SERIALPORTIO_H +#define MODULE_SERIALPORTIO_H +#include "stdint.h" + +typedef uint16_t (*SerialPortIOTransaction )(void *env, uint8_t *data, uint16_t size, uint32_t timeout); + +typedef struct { + void *env; + SerialPortIOTransaction receive; + SerialPortIOTransaction transmit; +} tSerialPortIO; + + +#endif //MODULE_SERIALPORTIO_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