From 9f4a3a01507458b24464eaf8f11f21b7fe4d00db Mon Sep 17 00:00:00 2001 From: WXK <287788329@qq.com> Date: 星期四, 27 七月 2023 12:00:47 +0800 Subject: [PATCH] 版本v2.3,上一版忘记低功耗放开。2.3版本以此版为主。 --- Src/application/dw_app.c | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Src/application/dw_app.c b/Src/application/dw_app.c index 226c813..861e053 100644 --- a/Src/application/dw_app.c +++ b/Src/application/dw_app.c @@ -29,7 +29,7 @@ #include <stdio.h> #include "beep.h" #include "modbus.h" - +#include "BMP390.h" /*------------------------------------ Marcos ------------------------------------------*/ /* Inter-ranging delay period, in milliseconds. */ #define RNG_DELAY_MS 100 @@ -81,7 +81,7 @@ SINGLEPOLL, }tag_state=STARTPOLL; dwt_config_t config = { - 2, /* Channel number. */ + 5, /* Channel number. */ DWT_PRF_64M, /* Pulse repetition frequency. */ DWT_PLEN_128, /* Preamble length. */ DWT_PAC8, /* Preamble acquisition chunk size. Used in RX only. */ @@ -1270,6 +1270,7 @@ } u32 id,error_times=0; extern float Height; +extern float Altitude; void Tag_App(void)//发送模式(TAG标签) { @@ -1297,6 +1298,7 @@ LED_LG_ON; Registor_Poll(); LED_LG_OFF; +// GetPressAndHeight(); break; case DISCPOLL: LED_LG_ON; @@ -1315,8 +1317,8 @@ break; case NEARPOLL: NearPoll(); - //GetPressAndHeight(); - //intheight = Height*100; + GetPressAndHeight(); + intheight =Altitude*100; break; case SINGLEPOLL: // Poll(); -- Gitblit v1.9.3