From cfb5d6891ffaf82194d096a42e306cbc5a8483bc Mon Sep 17 00:00:00 2001 From: cfif Date: Mon, 16 Feb 2026 15:03:08 +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 --- Gpios.c | 1 + Gpios.h | 1 + 2 files changed, 2 insertions(+) diff --git a/Gpios.c b/Gpios.c index 44ce2b0..14092fe 100644 --- a/Gpios.c +++ b/Gpios.c @@ -161,4 +161,5 @@ float VN7008AJ_ReadCurrent(uint16_t adc_value) { env->EmergencyAirCleanSwitch = vInitGpioPinPull(GPIO_B, PORT_PIN_0, GPIO_IN, GPIO_PIN_NOREVERSE, GPIO_LOW, GPIO_OPEN, PORT_PULL_DOWN); env->FireExtinguishSwitch = vInitGpioPinPull(GPIO_B, PORT_PIN_1, GPIO_IN, GPIO_PIN_NOREVERSE, GPIO_LOW, GPIO_OPEN, PORT_PULL_DOWN); + env->Ign_Wakeup = vInitGpioPinPull(GPIO_E, PORT_PIN_16, GPIO_IN, GPIO_PIN_NOREVERSE, GPIO_LOW, GPIO_OPEN, PORT_PULL_DOWN); } \ No newline at end of file diff --git a/Gpios.h b/Gpios.h index 06f2fe3..447f523 100644 --- a/Gpios.h +++ b/Gpios.h @@ -112,6 +112,7 @@ typedef struct { tPower power; tGpioPin EmergencyAirCleanSwitch; tGpioPin FireExtinguishSwitch; + tGpioPin Ign_Wakeup; } tGpios; extern tGpios GPIOS;