From 52ee50f75ea01fb3776039adbdd3dce0cb5f3212 Mon Sep 17 00:00:00 2001 From: cfif Date: Wed, 3 Dec 2025 15:38:34 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- StatusData.c | 3 +++ StatusData.h | 33 +++++++++++++++++++++++++++++++++ modular.json | 13 +++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 StatusData.c create mode 100644 StatusData.h create mode 100644 modular.json 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