main.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723
  1. /******************************************************************************
  2. * Copyright (C) 2021, Xiaohua Semiconductor Co., Ltd. All rights reserved.
  3. *
  4. * This software component is licensed by XHSC under BSD 3-Clause license
  5. * (the "License"); You may not use this file except in compliance with the
  6. * License. You may obtain a copy of the License at:
  7. * opensource.org/licenses/BSD-3-Clause
  8. *
  9. ******************************************************************************/
  10. /******************************************************************************
  11. * @file main.c
  12. *
  13. * @brief Source file for GPIO example
  14. *
  15. * @author MADS Team
  16. *
  17. ******************************************************************************/
  18. /******************************************************************************
  19. * Include files
  20. ******************************************************************************/
  21. #include "board.h"
  22. #include "tdc_tof.h"
  23. #include "smp_shell.h"
  24. #include "param.h"
  25. #include "lcd_disp.h"
  26. #include "bill.h"
  27. #include "app_nb.h"
  28. #include "check.h"
  29. #include "alarm.h"
  30. #include "rtc_run.h"
  31. #include "stat.h"
  32. #include "ymodem.h"
  33. /******************************************************************************
  34. * Local pre-processor symbols/macros ('#define')
  35. ******************************************************************************/
  36. /* 按键参数(可直接修改) */
  37. #define SHORT_PRESS_MS 50 // 短按阈值
  38. #define LONG_PRESS_MS 5000 // 长按阈值
  39. #define INVALID_LONG_PRESS_MS 20000 // 无效长按阈值
  40. #define DEBOUNCE_US 5000 // 消抖时间
  41. #define KEY_SLEEP_BLOCK_MS 800 // 按键后延迟允许休眠时间
  42. /* 全局变量(仅保留必要的) */
  43. struct rt_semaphore lcd_isr_sem; // lcd 中断信号量
  44. struct rt_semaphore rtc_isr_sem; // rtc 中断信号量
  45. struct rt_semaphore tdc_isr_sem; // TDC 中断信号量:中断->线程通知
  46. static rt_timer_t key_timer = RT_NULL; // 按键计时定时器
  47. static uint32_t key_press_time = 0; // 按键按下时长(ms)
  48. volatile rt_tick_t g_key_last_active_tick = 0; // add by HBR 20260623,按键最后活动时间,用于睡眠门禁
  49. uint8_t KEY_SHORT_PRESS_FLAG = 0; // 短按标志,用于翻屏
  50. uint8_t KEY_LONG_PRESS_FLAG = 0; // 长按标志,用于触发上报
  51. /************************** 线程配置 **************************/
  52. #define TDC_THREAD_STACK 1024 // 核心线程栈1K,满足需求 堆栈大小
  53. #define TDC_THREAD_PRIORITY 1 // 高优先级,确保及时响应
  54. #define TDC_THREAD_TIMESLICE 500
  55. #define RTC_THREAD_STACK 1024 // 核心线程栈1K,满足需求
  56. #define RTC_THREAD_PRIORITY 2 // 高优先级,确保及时响应
  57. #define RTC_THREAD_TIMESLICE 500
  58. #define NB_THREAD_STACK 2048 // 核心线程栈1K,满足需求
  59. #define NB_THREAD_PRIORITY 3 // 高优先级,确保及时响应
  60. #define NB_THREAD_TIMESLICE 500
  61. #define LCD_THREAD_STACK 1024 // 核心线程栈1K,满足需求
  62. #define LCD_THREAD_PRIORITY 4 // 高优先级,确保及时响应
  63. #define LCD_THREAD_TIMESLICE 500
  64. /******************************************************************************
  65. * Global variable definitions (declared in header file with 'extern')
  66. ******************************************************************************/
  67. uint8_t G_NB_CAN_DEEP_SLEEP = 1; // NB是否允许进入休眠,1:允许,0:不允许
  68. uint8_t G_KEY_CAN_DEEP_SLEEP = 1; // KEY是否允许进入休眠,1:允许,0:不允许
  69. uint8_t G_TDC_DEEP_SLEEP = 1;
  70. /******************************************************************************
  71. * Local type definitions ('typedef')
  72. ******************************************************************************/
  73. /******************************************************************************
  74. * Local function prototypes ('static')
  75. ******************************************************************************/
  76. /******************************************************************************
  77. * Local variable definitions ('static') *
  78. ******************************************************************************/
  79. /******************************************************************************
  80. * Local pre-processor symbols/macros ('#define')
  81. ******************************************************************************/
  82. /*****************************************************************************
  83. * Function implementation - global ('extern') and local ('static')
  84. ******************************************************************************/
  85. /**
  86. ******************************************************************************
  87. ** \brief Main function of project
  88. **
  89. ** \return uint32_t return value, if needed
  90. **
  91. ** This sample
  92. **
  93. ******************************************************************************/
  94. // uint32_t SOFT_VER = 0x56313031; // V101
  95. uint32_t BUILD_DATE = ((2025 << 16) | (12 << 8) | 16);
  96. uint16_t BUILD_TIME = ((17 << 8) | 23);
  97. //////////wxl test low power////////////
  98. /////////////////////////////////////////
  99. void show_stack_by_name(char *name)
  100. {
  101. rt_thread_t thread = rt_thread_find(name);
  102. if (thread == RT_NULL)
  103. {
  104. LOG("no thread name is:%s\n!", name);
  105. return;
  106. }
  107. rt_uint32_t total = thread->stack_size;
  108. rt_uint32_t free = (rt_uint32_t)thread->sp - (rt_uint32_t)thread->stack_addr;
  109. rt_uint32_t used = total - free;
  110. LOG("[name] %-8s | total:%4d | used:%4d | free:%4d\n",
  111. thread->name, total, used, free);
  112. }
  113. extern void test_dtof_var(void);
  114. void PeriodProc(void) // 测试更改提交 2026-5-19-1-2-3
  115. {
  116. rtc_run_t *rr;
  117. get_rtc_run(&rr);
  118. if (rr->flag_1s)
  119. {
  120. rr->flag_1s = 0;
  121. // 临时增加,展示样机用
  122. NB_CHECK_TDC_COMPLETE_FLAG = 1; // 目前tdc线程还不通,临时增加
  123. // add by yuewei 20260519 start
  124. if (!alarm_status(ERR_BLANK_PIPE)) // 非空管状态
  125. {
  126. // 不是空管,设置RTC中断0.5秒1次
  127. if ((get_rtc_interrupt_time() == 2) || (get_rtc_interrupt_time() == 1))
  128. {
  129. set_rtc_interrupt_time(0.5); // 0.5
  130. }
  131. }
  132. else if (G_NB_CAN_DEEP_SLEEP == 0) // 空管,正在上报
  133. {
  134. if ((uint8_t)get_rtc_interrupt_time() != 1)
  135. {
  136. set_rtc_interrupt_time(1);
  137. }
  138. }
  139. else // 空管,无上报
  140. {
  141. if ((uint8_t)get_rtc_interrupt_time() != 2)
  142. {
  143. set_rtc_interrupt_time(2);
  144. }
  145. }
  146. // add by yuewei 20260519 start
  147. // LOG("Diff=%.6f, AvgDiff=%.6f, T=%.6f, vol=%.6f\n", SerPlot.f.Data[0], SerPlot.f.Data[3], WaterPrmt[0], FlowVol * 0.000001f * 3600);
  148. // rt_thread_mdelay(10);
  149. // LOG("main-sec = %d ", rr->second);
  150. // rt_thread_mdelay(2);
  151. // add by yuewei 20260416 to countdown LcdTimer per 1 second
  152. lcd_timer_countdown();
  153. rt_sem_release(&lcd_isr_sem);
  154. bw_flow_monitor(); // 反向计量检测
  155. large_flow_monitor(); // 大流量检测
  156. cnti_flow_monitor(); // 持续流量检测
  157. leak_flow_monitor(); // 渗漏流量检测
  158. high_water_temp_monitor(); // 高温检测
  159. low_water_temp_monitor(); // 低温检测
  160. tdc_rw_err_monitor(); // 传感器异常检测
  161. eeprom_rw_err_monitor(); // 存储器异常检测
  162. // LOG("ch-%d:%.6f,%.6f,%.6f,%.6f\n",get_mux_ch(),SerPlot.f.Data[0],SerPlot.f.Data[1],SerPlot.f.Data[2],SerPlot.f.Data[3]);
  163. CheckRxTimeout();
  164. CheckingCoundown();
  165. nb_task_run_check(); // nb上报触发判断
  166. update_run_app_info();
  167. app_bill_run(); // 各种阶段计量定时存储
  168. run_clk_task_handler(); // wxl2026-5-8 一秒一次一些零星任务放在这个里面
  169. AlarmHandle(); // wxl2026-4-30
  170. feed_dog();
  171. }
  172. if (rr->flag_1m)
  173. {
  174. rr->flag_1m = 0;
  175. adc_get(); // 采集电池电压与压力
  176. low_power_monitor(); // 低电压检测
  177. high_pressure_monitor(); // 高压检测
  178. low_pressure_monitor(); // 低压检测
  179. // 跨00点
  180. if (rr->hour == 0 && rr->minute == 0)
  181. {
  182. // 清除今日日最高流量,同时将今日最高流量赋值给昨日最高流量
  183. clr_max_flow_rate();
  184. }
  185. }
  186. }
  187. /**
  188. * @brief 磁阻按键中断函数,下降沿触发
  189. * @param 无
  190. * @retval 无
  191. */
  192. // void PORTB_IRQHandler(void)
  193. //{
  194. // if (GpioGetEvents(GpioPortB, GpioBitMsk0))
  195. // {
  196. // // 简单消抖
  197. // us_delay(DEBOUNCE_US);
  198. // if (GpioInPins(GpioPortB, GpioBitMsk0) == 0)
  199. // {
  200. // key_press_time = 0;
  201. // rt_timer_start(key_timer); // 启动计时
  202. // G_KEY_CAN_DEEP_SLEEP = 0; // 按键不允许休眠
  203. // }
  204. // M0P_GPIO->PB_ICLR &= ~(1 << 0);
  205. // }
  206. //}
  207. uint8_t key_handle_runing = 0;
  208. uint8_t key_irq_handler(void) // WXL2026-5-22
  209. {
  210. if (GpioGetEvents(GpioPortD, GpioBitMsk4))
  211. {
  212. if (key_handle_runing != 0 || key_press_time != 0) // waiting for key task complete wxl2026-5-26
  213. {
  214. // M0P_GPIO->PD_ICLR &= ~(1 << 4);
  215. M0P_GPIO->PD_ICLR = (1u << 4);
  216. return 0;
  217. }
  218. // us_delay(DEBOUNCE_US);
  219. if (GpioInPins(GpioPortD, GpioBitMsk4) != 0)
  220. {
  221. key_press_time = 0;
  222. G_KEY_CAN_DEEP_SLEEP = 0; // 按键不允许休眠
  223. g_key_last_active_tick = rt_tick_get(); // add by HBR 20260623,按键中断触发记录一次时间
  224. rt_timer_stop(key_timer);
  225. rt_timer_start(key_timer);
  226. }
  227. // M0P_GPIO->PD_ICLR &= ~(1 << 4);
  228. M0P_GPIO->PD_ICLR = (1u << 4);
  229. return 1;
  230. }
  231. return 0;
  232. }
  233. /**
  234. * @brief 定时器回调:1ms计时,检测释放并判断长短按
  235. */
  236. static void key_timer_cb(void *param)
  237. {
  238. key_press_time++; // 累计按下时间
  239. if (GpioInPins(GpioPortD, GpioBitMsk4) == 0) // WXL2026-5-20
  240. {
  241. rt_timer_stop(key_timer); // 停止计时
  242. G_KEY_CAN_DEEP_SLEEP = 0; // modify by HBR 20260622,按键,不允许休眠
  243. g_key_last_active_tick = rt_tick_get(); // add by HBR 20260622,判断出短按记录一次时间
  244. // 核心:判断长短按
  245. if (key_press_time >= SHORT_PRESS_MS && key_press_time < LONG_PRESS_MS)
  246. {
  247. LOG("short press:%dms\n", key_press_time); // 短按逻辑
  248. KEY_SHORT_PRESS_FLAG = 1; // 翻屏
  249. }
  250. key_press_time = 0; // 重置计时
  251. }
  252. if ((G_KEY_CAN_DEEP_SLEEP == 0) && (key_press_time >= LONG_PRESS_MS))
  253. {
  254. G_KEY_CAN_DEEP_SLEEP = 1; // 允许休眠
  255. LOG("long press:%dms\n", key_press_time); // 长按逻辑
  256. KEY_LONG_PRESS_FLAG = 1; // 上报
  257. rt_timer_stop(key_timer); // 停止计时
  258. key_press_time = 0;
  259. }
  260. }
  261. /**
  262. * @brief RTC相关业务线程
  263. * @param parameter: 线程参数,RT_NULL
  264. * @retval 无
  265. */
  266. static void rtc_business_thread(void *parameter)
  267. {
  268. rt_err_t ret = RT_EOK;
  269. while (1)
  270. {
  271. /* 等待中断信号(永久等待,不占用CPU) */
  272. if (rt_sem_take(&rtc_isr_sem, RT_WAITING_FOREVER) == RT_EOK)
  273. {
  274. rtc_interrupt_deal_tdc();
  275. // add by HBR 20260617 to deal static ot count do not display when set stativ ot
  276. if (G_STATIC_OT_SETTING_FLAG == 1)
  277. {
  278. rt_sem_release(&lcd_isr_sem);
  279. }
  280. }
  281. }
  282. }
  283. /**
  284. * @brief 创建rtc线程
  285. * @retval 0-成功,-1-失败
  286. */
  287. static int rtc_thread_create(void)
  288. {
  289. rt_thread_t rtc_thread = RT_NULL;
  290. rtc_thread = rt_thread_create("rtc_thread",
  291. rtc_business_thread,
  292. RT_NULL,
  293. RTC_THREAD_STACK,
  294. RTC_THREAD_PRIORITY,
  295. RTC_THREAD_TIMESLICE);
  296. if (rtc_thread == RT_NULL)
  297. {
  298. LOG("RTC thread create failed!\n");
  299. return -1;
  300. }
  301. rt_thread_startup(rtc_thread);
  302. LOG("RTC thread create success!\n");
  303. return 0;
  304. }
  305. /**
  306. * @brief TDC相关业务线程
  307. * @param parameter: 线程参数,RT_NULL
  308. * @retval 无
  309. */
  310. static void tdc_business_thread(void *parameter)
  311. {
  312. rt_err_t ret = RT_EOK;
  313. uint32_t cnt;
  314. while (1)
  315. {
  316. // LOG("tdc_business_thread\n");
  317. /* 等待中断信号(永久等待,不占用CPU) */
  318. if (rt_sem_take(&tdc_isr_sem, RT_WAITING_FOREVER) == RT_EOK)
  319. {
  320. // LOG("rt_sem_take\n");
  321. tof_isr_convert_tof_to_flow();
  322. }
  323. if (TdcIntStep == 0xff)
  324. {
  325. // cnt=SYS_MS_CNT;
  326. #ifdef APP_DEBUG_PRINT
  327. G_TDC_DEEP_SLEEP = 0;
  328. // rt_thread_mdelay(15);
  329. rtc_run_t *rr;
  330. get_rtc_run(&rr);
  331. #ifdef DEBUG_TDC
  332. LOG("Diff=%.6f, AvgDiff=%.6f, T=%.6f, vol=%.6f\n", SerPlot.f.Data[0], SerPlot.f.Data[3], WaterPrmt[0], FlowVol * 0.000001f * 3600);
  333. // LOG("diff=%.6f, U=%.6f, D=%.6f\n", SerPlot.f.Data[0], SerPlot.f.Data[1], SerPlot.f.Data[2]);
  334. rt_thread_mdelay(4);
  335. #endif
  336. #endif
  337. G_TDC_DEEP_SLEEP = 1;
  338. // rt_thread_mdelay(10);
  339. NB_CHECK_TDC_COMPLETE_FLAG = 1;
  340. // get_time[gtcnt++]=SYS_MS_CNT-cnt;
  341. // gtcnt&=0x1f;
  342. }
  343. // G_TDC_DEEP_SLEEP = 1;
  344. }
  345. }
  346. /**
  347. * @brief 创建tdc线程
  348. * @retval 0-成功,-1-失败
  349. */
  350. static int tdc_thread_create(void)
  351. {
  352. rt_thread_t tdc_thread = RT_NULL;
  353. tdc_thread = rt_thread_create("tdc_thread",
  354. tdc_business_thread,
  355. RT_NULL,
  356. TDC_THREAD_STACK,
  357. TDC_THREAD_PRIORITY,
  358. TDC_THREAD_TIMESLICE);
  359. if (tdc_thread == RT_NULL)
  360. {
  361. LOG("TDC thread create failed!\n");
  362. return -1;
  363. }
  364. rt_thread_startup(tdc_thread);
  365. LOG("TDC thread create success!\n");
  366. return 0;
  367. }
  368. /**
  369. * @brief NB相关业务线程
  370. * @param parameter: 线程参数,RT_NULL
  371. * @retval 无
  372. */
  373. // extern rt_sem_t Nb_thread_run_sem;
  374. static void nb_business_thread(void *parameter)
  375. {
  376. NbTread(); // 满足上报条件后就上报,否则持续挂起等待
  377. }
  378. /**
  379. * @brief 创建NB线程
  380. * @retval 0-成功,-1-失败
  381. */
  382. static int nb_thread_create(void)
  383. {
  384. rt_thread_t nb_thread = RT_NULL;
  385. nb_thread = rt_thread_create("nb_thread",
  386. nb_business_thread,
  387. RT_NULL,
  388. NB_THREAD_STACK,
  389. NB_THREAD_PRIORITY,
  390. NB_THREAD_TIMESLICE);
  391. if (nb_thread == RT_NULL)
  392. {
  393. LOG("NB thread create failed!\n");
  394. return -1;
  395. }
  396. rt_thread_startup(nb_thread);
  397. LOG("NB thread create success!\n");
  398. return 0;
  399. }
  400. /**
  401. * @brief LCD相关业务线程
  402. * @param parameter: 线程参数,RT_NULL
  403. * @retval 无
  404. */
  405. static void lcd_business_thread(void *parameter)
  406. {
  407. while (1)
  408. {
  409. if (rt_sem_take(&lcd_isr_sem, RT_WAITING_FOREVER) == RT_EOK)
  410. {
  411. if (lcd_disp_pass_flag != 0)
  412. {
  413. lcd_disp_pass_flag--;
  414. lcd_show_key_trigger_report_pass();
  415. }
  416. else if (G_OT_ERROR_FLAG_CNT != 0)
  417. {
  418. G_OT_ERROR_FLAG_CNT--;
  419. lcd_show_ot_error();
  420. }
  421. else
  422. LcdHandler();
  423. key_handle_runing = 0;
  424. }
  425. }
  426. }
  427. /**
  428. * @brief 创建LCD线程
  429. * @retval 0-成功,-1-失败
  430. */
  431. static int lcd_thread_create(void)
  432. {
  433. rt_thread_t lcd_thread = RT_NULL;
  434. lcd_thread = rt_thread_create("lcd_thread",
  435. lcd_business_thread,
  436. RT_NULL,
  437. LCD_THREAD_STACK,
  438. LCD_THREAD_PRIORITY,
  439. LCD_THREAD_TIMESLICE);
  440. if (lcd_thread == RT_NULL)
  441. {
  442. LOG("LCD thread create failed!\n");
  443. return -1;
  444. }
  445. rt_thread_startup(lcd_thread);
  446. LOG("LCD thread create success!\n");
  447. return 0;
  448. }
  449. /**
  450. * @brief 创建按键时长检测定时器
  451. * @retval 0-成功,-1-失败
  452. */
  453. static int Key_press_timer_create(void)
  454. {
  455. // 创建1ms周期的软件定时器(RTOS自带,无需配置硬件)
  456. key_timer = rt_timer_create("key_timer", key_timer_cb,
  457. RT_NULL, 1, RT_TIMER_FLAG_PERIODIC);
  458. if (key_timer == RT_NULL)
  459. {
  460. LOG("key_timer create failed!\n");
  461. return -1;
  462. }
  463. LOG("key_timer create success!\n");
  464. return 0;
  465. }
  466. int32_t main(void)
  467. {
  468. int32_t res;
  469. uint8_t ch_num;
  470. uint8_t ch;
  471. uint8_t i;
  472. uint32_t flag;
  473. rt_base_t level;
  474. #ifdef DOG_ENABLE
  475. watchdog_init(WdtResetEn, WdtT6s55); // 看门狗初始化
  476. #endif
  477. feed_dog();
  478. rt_enter_critical(); //!!!!!do not delete!!!!!!
  479. set_tof_state(TOF_ST_INIT);
  480. HardwareIdInit(); // 初始化硬件ID接口
  481. ButtonInit(); // 初始化磁组按键
  482. tdc_tof_init(); // ms1030 spi驱动
  483. finsh_drv_init(); // 红外串口初始化波特率2400、8位数据、1位停止位、even偶校验
  484. lpuart0_drv_init(0); // NB串口初始化波特率9600、8位数据、1位停止位、none校验
  485. nb_run_init(); // NB运行数据初始化
  486. McuFlash_init(); // FLASH读写初始化
  487. #ifdef APP_DEBUG_PRINT
  488. debug_uart_init(); // 初始化调试打印接口,波特率9600、8位数据、1位停止位、none校验
  489. #endif // DEBUG
  490. set_check_rx_itf(CheckRxData); // 设置红外中断处理函数为CheckRxData
  491. check_init(); // 初始化红外接收数据结构
  492. lcd_init(); // 液晶屏初始化
  493. // LCD_DispDouble(1234.567890, 0, 10, 4);
  494. lcd_show_all(); // 液晶屏全显
  495. LCD_Update();
  496. us_delay(100); // 延时大约1秒
  497. feed_dog();
  498. adc_init(); // adc初始化,电压采集
  499. adc_get(); // 采集一次数据
  500. eeprom_init(); // EEPROM驱动初始化,I2C
  501. rtc_run_t *rr;
  502. get_rtc_run(&rr); // 获取RTC时间
  503. rtc_init(rr); // 设置RTC系统时钟源为外部32K(ms1030),同时设置定时中断为1秒钟一次
  504. set_tof_state(TOF_ST_VOID); // 设置ms1030状态,降低功耗
  505. // // set_tof_state(TOF_ST_METER);
  506. ParamInit(); // 初始化全局变量参数
  507. set_tdc_itf(&TdcItf); //!!!!!!do not move!!!!!!only can be after ParamInit()!!!!!!!
  508. LOG("------------TFUW001------------\n");
  509. ch_num = GetChNum();
  510. tof_filter_init(ch_num); // 20260429
  511. LOG("ch_num = %d\n", ch_num);
  512. // LOG("TdcItf.ch_num = %d\n", TdcItf.ch_num);
  513. // LOG("pTdcItf->ch_num = %d\n", pTdcItf->ch_num);
  514. for (i = 0; i < ch_num; i++)
  515. {
  516. ch = TdcItf.mux_ch_no[i];
  517. LOG("Ch%d TdcPathSkew = %.3fns.\n", ch, TdcItf.path_skew[ch]);
  518. }
  519. LOG("pressure_sensor = %d\n", Paramx.pressure_sensor);
  520. LOG("PipeCoe = %.6f\n", TdcItf.pipe_coe);
  521. LOG("dev_id =%02x%02x%02x%02x%02x%02x\n", Paramx.dev_id[0], Paramx.dev_id[1], Paramx.dev_id[2], Paramx.dev_id[3], Paramx.dev_id[4], Paramx.dev_id[5]);
  522. LOG("b=%d,n=%d,q=%d,r=%d\n", Paramx.b, Paramx.n, Paramx.q, Paramx.r);
  523. int tmp = 0;
  524. for (i = 0; i < CHECK_POINT_NUM; i++)
  525. {
  526. LOG("spdlvl[%d][%d] = %d\n", tmp, i, Paramx.check_spdLvl_c[tmp].spd_lvl[i]);
  527. LOG("base c[%d][%d] = %d\n", tmp, i, Paramx.check_spdLvl_c[tmp].base_c[i]);
  528. LOG("current c[%d][%d] = %d\n", tmp, i, Paramx.check_spdLvl_c[tmp].cur_c[i]);
  529. }
  530. ///////////debug//////////////////////
  531. // set_rtc_interrupt_time(1);
  532. ///////////////////////////////
  533. rtc_thread_create(); // 创建RTC线程
  534. tdc_thread_create(); // 创建TDC线程
  535. nb_thread_create(); // 创建NB线程
  536. lcd_thread_create(); // 创建LCD线程
  537. Key_press_timer_create(); // 创建按键时长检测定时器
  538. rt_sem_init(&tdc_isr_sem, "tdc_isr", 0, RT_IPC_FLAG_PRIO);
  539. rt_sem_init(&rtc_isr_sem, "rtc_isr", 0, RT_IPC_FLAG_PRIO);
  540. rt_sem_init(&lcd_isr_sem, "lcd_isr", 0, RT_IPC_FLAG_PRIO);
  541. rt_exit_critical(); ////!!!!!do not delete!!!!!!
  542. // us_delay(10000);
  543. // nb_tx_str(NB_AT);
  544. // us_delay(10000);
  545. // nb_tx_str(NB_AT);
  546. // us_delay(10000);
  547. while (1)
  548. {
  549. PeriodProc();
  550. CheckRxHandler(); // 红外接收指令处理
  551. // 翻屏
  552. if (KEY_SHORT_PRESS_FLAG == 1)
  553. {
  554. key_handle_runing = 1;
  555. if (GetCheckState() == CHECKING)
  556. {
  557. // add by yuewei 20260416 to toggle display fw and bw cumflow in checking mode
  558. g_lcd_display_check_bw_cum_flow = ~g_lcd_display_check_bw_cum_flow;
  559. rt_sem_release(&lcd_isr_sem); // add by HBR 20260622
  560. }
  561. else
  562. {
  563. lcd_page_switch();
  564. rt_sem_release(&lcd_isr_sem);
  565. // LcdHandler();//add by yw 20260126
  566. }
  567. KEY_SHORT_PRESS_FLAG = 0; // 清除标志
  568. }
  569. // 长按
  570. if (KEY_LONG_PRESS_FLAG == 1)
  571. {
  572. key_handle_runing = 1;
  573. LOG("-----------------------------LcdPage=%d\n", LcdPage);
  574. // 处于检表状态
  575. if (GetCheckState() == CHECKING)
  576. {
  577. // 进入正常模式
  578. check_enter_normal_mode_by_key_press();
  579. LOG("check_enter_normal_mode_by_key_press!\n");
  580. }
  581. else
  582. {
  583. // 液晶屏当前处于时间显示页面
  584. if (LcdPage == disp_time)
  585. {
  586. // 进入检表模式
  587. check_enter_check_mode_by_key_press();
  588. LOG("check_enter_check_mode_by_key_press!\n");
  589. }
  590. else
  591. {
  592. // add by yuewei 20260416
  593. // lcd_show_key_trigger_report_pass();
  594. // us_delay(100000000);
  595. lcd_disp_pass_flag = 2; // wxl20260423 触发显示pass
  596. // rt_sem_release(&lcd_isr_sem);
  597. // 在此处触发NB上报
  598. upload_dat.manual_runflag = 1; // wxl 2026-4-1 这个标志会触发手动上报
  599. }
  600. }
  601. KEY_LONG_PRESS_FLAG = 0;
  602. }
  603. // show_stack_by_name("tidle");
  604. // show_stack_by_name("main");
  605. // show_stack_by_name("lcd_thread");
  606. // show_stack_by_name("nb_thread");
  607. if ((G_KEY_CAN_DEEP_SLEEP == 0) && // add by HBR 20260623
  608. (key_press_time == 0) &&
  609. (rt_tick_get() - g_key_last_active_tick > rt_tick_from_millisecond(KEY_SLEEP_BLOCK_MS))) // 按键按下后延迟800ms并且按键计数为0后,才进入休眠
  610. {
  611. G_KEY_CAN_DEEP_SLEEP = 1;
  612. }
  613. if (G_NB_CAN_DEEP_SLEEP && G_TDC_DEEP_SLEEP && G_KEY_CAN_DEEP_SLEEP)
  614. {
  615. EnterLowPower();
  616. }
  617. }
  618. }
  619. /******************************************************************************
  620. * EOF (not truncated)
  621. ******************************************************************************/
  622. #ifdef DEBUG_LOW_POWER
  623. uint32_t get_time[32];
  624. uint8_t gtcnt;
  625. // void get_internal_time(void);
  626. // extern uint16_t tms;
  627. #endif