main.c 22 KB

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