From 6cee19e4a079ef0a112b4126b48efbd3dcaa021c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E9=A9=AC=5F666?= <13089258+pony-six-hundred-and-sixty-six@user.noreply.gitee.com> Date: Mon, 17 Mar 2025 13:21:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9A=82=E5=AD=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bsp/inc/bsp_h308.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bsp/inc/bsp_h308.h b/bsp/inc/bsp_h308.h index da5e431..7c0cc42 100644 --- a/bsp/inc/bsp_h308.h +++ b/bsp/inc/bsp_h308.h @@ -33,11 +33,11 @@ #define H308_PWR_PIN GET_PIN(B, 9) #define H308_RST_PIN GET_PIN(C, 12) -// #define H308_PWR_ON rt_pin_write(H308_PWR_PIN, PIN_HIGH) -// #define H308_PWR_OFF rt_pin_write(H308_PWR_PIN, PIN_LOW) +#define H308_PWR_ON rt_pin_write(H308_PWR_PIN, PIN_HIGH) +#define H308_PWR_OFF rt_pin_write(H308_PWR_PIN, PIN_LOW) -#define H308_PWR_ON rt_pin_write(H308_PWR_PIN, PIN_LOW) -#define H308_PWR_OFF rt_pin_write(H308_PWR_PIN, PIN_HIGH) +// #define H308_PWR_ON rt_pin_write(H308_PWR_PIN, PIN_LOW) +// #define H308_PWR_OFF rt_pin_write(H308_PWR_PIN, PIN_HIGH) #define H308_RST_ON rt_pin_write(H308_RST_PIN, PIN_LOW) #define H308_RST_OFF rt_pin_write(H308_RST_PIN, PIN_HIGH)