Обновление
This commit is contained in:
commit
52ee50f75e
|
|
@ -0,0 +1,3 @@
|
||||||
|
//
|
||||||
|
// Created by cfif on 03.12.2025.
|
||||||
|
//
|
||||||
|
|
@ -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
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"dep": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"cmake": {
|
||||||
|
"inc_dirs": [
|
||||||
|
"./"
|
||||||
|
],
|
||||||
|
"srcs": [
|
||||||
|
"./**.c"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue