commit 17aee3b937493919c6f4d2c78cbdf496f8cb6d81 Author: cfif Date: Mon Jun 2 13:26:41 2025 +0300 Init diff --git a/Inc/AdcIO.h b/Inc/AdcIO.h new file mode 100644 index 0000000..cfccbb2 --- /dev/null +++ b/Inc/AdcIO.h @@ -0,0 +1,18 @@ +// +// Created by cfif on 17.11.22. +// + +#ifndef MODULE_ADCIO_H +#define MODULE_ADCIO_H + +#include "stdint.h" + +typedef int32_t (*AdcIOTransaction )(void *env, uint32_t timeout); + +typedef struct { + void *env; + AdcIOTransaction get; +} tAdcIO; + + +#endif //MODULE_ADCIO_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