Обновление

This commit is contained in:
cfif 2025-12-03 15:38:34 +03:00
commit 52ee50f75e
3 changed files with 49 additions and 0 deletions

3
StatusData.c Normal file
View File

@ -0,0 +1,3 @@
//
// Created by cfif on 03.12.2025.
//

33
StatusData.h Normal file
View File

@ -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

13
modular.json Normal file
View File

@ -0,0 +1,13 @@
{
"dep": [
],
"cmake": {
"inc_dirs": [
"./"
],
"srcs": [
"./**.c"
]
}
}