commit 52ee50f75ea01fb3776039adbdd3dce0cb5f3212 Author: cfif Date: Wed Dec 3 15:38:34 2025 +0300 Обновление diff --git a/StatusData.c b/StatusData.c new file mode 100644 index 0000000..b51eadf --- /dev/null +++ b/StatusData.c @@ -0,0 +1,3 @@ +// +// Created by cfif on 03.12.2025. +// diff --git a/StatusData.h b/StatusData.h new file mode 100644 index 0000000..3de707d --- /dev/null +++ b/StatusData.h @@ -0,0 +1,33 @@ +// +// Created by cfif on 03.12.2025. +// + +#ifndef HVAC_M7_STATUSDATA_H +#define HVAC_M7_STATUSDATA_H + +typedef enum { + AROMA_NOT_PRESENT = 0, + AROMA_PRESENT = 1, + AROMA_DEFAULT = 0xFF +} eAromaConfiguration; + +typedef enum { + ALG_STANDART = 0, + ALG_LIMOUSINE = 1, + ALG_DEFAULT = 0xFF +} eAlgorithmConfiguration; + +typedef struct { + + + +} tStatusSensor; + +typedef struct { + eAromaConfiguration AromaConfiguration; + eAlgorithmConfiguration AlgorithmConfiguration; + +} tStatusData; + + +#endif //HVAC_M7_STATUSDATA_H diff --git a/modular.json b/modular.json new file mode 100644 index 0000000..9589ff8 --- /dev/null +++ b/modular.json @@ -0,0 +1,13 @@ +{ + "dep": [ + + ], + "cmake": { + "inc_dirs": [ + "./" + ], + "srcs": [ + "./**.c" + ] + } +} \ No newline at end of file