commit 2b8a39d46af162b8a2715f34b5204e8dda888039 Author: cfif Date: Wed Dec 4 13:10:49 2024 +0300 Init 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