yc_terminal.c 51 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include "freertos/FreeRTOS.h"
  5. #include "freertos/task.h"
  6. #include "freertos/queue.h"
  7. #include "freertos/semphr.h"
  8. #include "esp_log.h"
  9. #include "esp_system.h"
  10. #include "freertos/event_groups.h"
  11. #include "esp_timer.h"
  12. #include "esp_err.h"
  13. #include "user_config.h"
  14. #include "LED.h"
  15. #include "list.h"
  16. #include "freertos/timers.h"
  17. #include "user_sleep.h"
  18. #include "esp_sleep.h"
  19. #include "esp_sleep.h"
  20. #include "user_time.h"
  21. #include "driver/uart.h"
  22. #include "driver/rtc_io.h"
  23. char user_device_id[50] = {0};
  24. RTC_FAST_ATTR unsigned char power = 0;
  25. #define MAX_RETRY_ACK 3 // 最大重传次数停止发送数据
  26. int retry_times = 0;
  27. bool powerOn_flag = false;
  28. static const char *LOG_TAG = "user_main";
  29. extern Node *Send_list; // 发送数据链表
  30. YC_DATA_T yc_data;
  31. // ListNode *list_head = NULL;
  32. adc_oneshot_unit_handle_t adc1_handle;
  33. QueueHandle_t screen_queue;
  34. QueueHandle_t lora_data_queue;
  35. QueueHandle_t yc_data_queue;
  36. QueueHandle_t button_Data_queue;
  37. EventGroupHandle_t screen_event;
  38. extern QueueHandle_t lora_receiveQueue; // lora底层数据上报
  39. extern QueueHandle_t lora_dealhandle; // 开始处理逻辑的数据
  40. QueueHandle_t sleep_queue;
  41. QueueHandle_t wakeup_queue;
  42. QueueHandle_t Send_Data_queue; // 发送链表任务
  43. // SemaphoreHandle_t button_semaphore; // 刷新屏幕时都得加上按键互斥锁
  44. // SemaphoreHandle_t screen_semaphore; //刷新屏幕时都得加上互斥锁
  45. #if !HARDWARE_SPI
  46. struct EPD_INFO_SET left_screen = {};
  47. struct EPD_INFO_SET right_screen = {};
  48. #endif
  49. extern LORA_DATA_T lora_data;
  50. extern TERMINAL_INFO_T terminal_info;
  51. #include "y_ringbuf.h"
  52. extern struct RINGBUF_st;
  53. extern RINGBUF_st *lora_ringbuf;
  54. // static void board_init(void);
  55. // static void info_init(void);
  56. // static void left_screen_task(void* arg);
  57. // static void right_screen_task(void* arg);
  58. static void screen_task(void *arg);
  59. static void unpack_task(void *arg);
  60. static void lora_task(void *arg);
  61. static void button_task(void *arg);
  62. static void business_logic_task(void *arg);
  63. static void gui_task(void *pvParameter);
  64. void read_deal_data_callback_handler();
  65. // void Sendlist_task_callback_handler();
  66. void uart_task_callback_handler();
  67. /*********************************************************************************
  68. * function : user_nvs_init
  69. * Description : 添加NVS相关 获取出厂设备ID等相关参数
  70. * Input :
  71. * Output :
  72. * Author : Data : 2023 11.08
  73. **********************************************************************************/
  74. void user_nvs_init()
  75. {
  76. #include "nvs_flash.h"
  77. #include "nvs.h"
  78. nvs_handle_t my_handle;
  79. esp_err_t ret;
  80. /* Initialize NVS. */
  81. ret = nvs_flash_init();
  82. if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND)
  83. {
  84. ESP_ERROR_CHECK(nvs_flash_erase());
  85. ret = nvs_flash_init();
  86. printf("nvs_flash_init ok\r\n");
  87. }
  88. ret = ESP_OK;
  89. if ((ret = nvs_flash_init_partition("nvs")) != ESP_OK)
  90. {
  91. printf("nvs init fail\r\n");
  92. }
  93. else
  94. {
  95. printf("nvs init ok\r\n");
  96. }
  97. ret = nvs_open_from_partition("nvs", "user_config", NVS_READONLY, &my_handle);
  98. if (ret != ESP_OK)
  99. {
  100. printf("nvs_open failed with\r\n");
  101. }
  102. size_t len = 0;
  103. char cid[50] = {0};
  104. // size_t required_size;
  105. // nvs_get_str(my_handle, "server_name", NULL, &required_size);
  106. // char* server_name = malloc(required_size);
  107. // nvs_get_str(my_handle, "server_name", server_name, &required_size);
  108. ret = nvs_get_str(my_handle, "deviceid", NULL, &len);
  109. char *result = malloc(len);
  110. nvs_get_str(my_handle, "deviceid", result, &len);
  111. switch (ret)
  112. {
  113. case ESP_OK:
  114. // printf("Read string from NVS: %s\r\n", cid);
  115. break;
  116. case ESP_ERR_NVS_NOT_FOUND:
  117. printf("Value not found in NVS");
  118. break;
  119. default:
  120. printf("Error (%d) reading from NVS", ret);
  121. }
  122. memcpy(user_device_id, cid, len);
  123. memcpy(Machine_info.cid, cid, len);
  124. #if 1
  125. strcpy((char *)Machine_info.cid, result);
  126. printf("device id %s,result = %s,len = %d\r\n", cid, result, len);
  127. #else
  128. strcpy((char *)Machine_info.cid, "1tpmQwHNS");
  129. #endif
  130. printf("Machine_info cid %s\r\n", Machine_info.cid);
  131. nvs_close(my_handle);
  132. free(result);
  133. }
  134. extern void app_init();
  135. Machine_info_t default_info = {
  136. .left_display_mode = 0,
  137. .left_state = 1,
  138. .paired = 0, // 未配网
  139. .power_status = 0, // 关机
  140. // .is_setting = 0, //设置模式
  141. .eflagID = 0xFF,
  142. .left_max_Quick_refresh_time = 5, // 最大快刷次数
  143. .left_current_Quick_refresh_time = 0, // 当前已经快刷的次数 当前快刷的次数大于设置 慢刷一次
  144. .lora_factory_channel = LORA_CHANENL,
  145. .right_max_Quick_refresh_time = 5, // 最大快刷次数
  146. .right_current_Quick_refresh_time = 0, // 当前已经快刷的次数 当前快刷的次数大于设置 慢刷一次
  147. .current_button.button_info = 0x01, // 初始化为1(运行)
  148. .last_button.button_info = 0x01,
  149. .terminal_name = {0xD2, 0xCF, 0xB3, 0xB2, 0xD6, 0xD5, 0xB6, 0xCB, 0x00, 0x00}, // 蚁巢终端
  150. .terminal_number = {0xD2, 0xCF, 0xB3, 0xB2, 0xB1, 0xE0, 0xBA, 0xC5, 0x00, 0x00}, // 蚁巢编号
  151. .station_name = {0xB9, 0xA4, 0xD5, 0xBE, 0xC3, 0xFB, 0xB3, 0xC6, 0x00, 0x00}, // 工站名称
  152. .station_number = {0xB9, 0xA4, 0xD5, 0xBE, 0xB1, 0xE0, 0xBA, 0xC5, 0x00, 0x00}, // 工站编号
  153. .rssi = 0x64,
  154. .refresh_cycle = 2,
  155. .batt_precent = 100,
  156. .btn_operation = {0xd4, 0xcb, 0xd0, 0xd0, 0x00, 0x00},
  157. .btn_breakDown_info = {0xb9, 0xca, 0xd5, 0xcf, 0x00, 0x00},
  158. .btn_shutDown_info = {0xcd, 0xa3, 0xbb, 0xfa, 0x00, 0x00},
  159. .btn_safeKeep_info = {0xb7, 0xe2, 0xb4, 0xe6, 0x00, 0x00},
  160. .btn_upKeep_info = {0xb1, 0xa3, 0xd1, 0xf8, 0x00, 0x00},
  161. .btn_waitMaterials_info = {0xb4, 0xfd, 0xc1, 0xcf, 0x00, 0x00},
  162. .btn_dis_flag = {true, true, true, true, true, true},
  163. .checkIn_set[0] = {
  164. .other_name = {0xC9, 0xFA, 0xB2, 0xFA, 0x00, 0x00},
  165. .checkIn_close = false,
  166. },
  167. .checkIn_set[1] = {
  168. .other_name = {0xCE, 0xAC, 0xD0, 0xDE, 0x00, 0x00},
  169. .checkIn_close = false,
  170. },
  171. .checkIn_set[2] = {
  172. .other_name = {0xD1, 0xB2, 0xBC, 0xEC, 0x00, 0x00},
  173. .checkIn_close = false,
  174. },
  175. .checkIn_set[3] = {
  176. .other_name = {0xB1, 0xA3, 0xD1, 0xF8, 0x00, 0x00},
  177. .checkIn_close = false,
  178. },
  179. .person[0] = {
  180. .Charge_close = false,
  181. .other_name = {0xb9, 0xdc, 0x20, 0x20, 0xc0, 0xed, 0x20, 0x20, 0xd4, 0xb1, 0x3a, 0x00, 0x00, 0x00},
  182. },
  183. .person[1] = {
  184. .Charge_close = false,
  185. .other_name = {0xc9, 0xfa, 0xb2, 0xfa, 0xd4, 0xf0, 0xc8, 0xce, 0xc8, 0xcb, 0x3a, 0x00, 0x00, 0x00},
  186. },
  187. .person[2] = {
  188. .Charge_close = false,
  189. .other_name = {0xce, 0xac, 0xd0, 0xde, 0xd4, 0xf0, 0xc8, 0xce, 0xc8, 0xcb, 0x3a, 0x00, 0x00, 0x00},
  190. },
  191. .person[3] = {
  192. .Charge_close = false,
  193. .other_name = {0xb1, 0xa3, 0xd1, 0xf8, 0xd4, 0xf0, 0xc8, 0xce, 0xc8, 0xcb, 0x3a, 0x00, 0x00, 0x00},
  194. },
  195. .person[4] = {
  196. .Charge_close = false,
  197. .other_name = {0xd1, 0xb2, 0xbc, 0xec, 0xd4, 0xf0, 0xc8, 0xce, 0xc8, 0xcb, 0x3a, 0x00, 0x00, 0x00},
  198. },
  199. };
  200. #define PRINT_SPIFFS 0
  201. #if PRINT_SPIFFS
  202. void printHexData(const void *ptr, size_t size)
  203. {
  204. const unsigned char *p = (const unsigned char *)ptr;
  205. for (size_t i = 0; i < size; ++i)
  206. {
  207. printf("%02x ", p[i]);
  208. if (i % 16 == 0)
  209. {
  210. printf("\r\n");
  211. }
  212. }
  213. // printf("\n");
  214. }
  215. #endif
  216. void app_init()
  217. {
  218. #if 0
  219. gpio_reset_pin(4);
  220. gpio_config_t io_conf = {};
  221. io_conf.pin_bit_mask = (1<<4);
  222. io_conf.mode = GPIO_MODE_INPUT;
  223. io_conf.pull_up_en = false;
  224. gpio_config(&io_conf);
  225. while(1)
  226. {
  227. printf("power gpio is %s\r\n",gpio_get_level(4)?"high":"low");
  228. vTaskDelay(100 / portTICK_PERIOD_MS);
  229. }
  230. #endif
  231. // 设置蜂鸣器声音
  232. #if USER_NOT_SLEEP_ENABLE || USER_LIGHT_SLEEP_ENABLE || USER_DEEP_SLEEP_ENABLE
  233. beep_init();
  234. #endif
  235. #if USER_NOT_SLEEP_ENABLE || USER_LIGHT_SLEEP_ENABLE || USER_DEEP_SLEEP_ENABLE
  236. font_init();
  237. #endif
  238. #if USER_NOT_SLEEP_ENABLE || USER_LIGHT_SLEEP_ENABLE || USER_DEEP_SLEEP_ENABLE
  239. epd_init();
  240. #endif
  241. user_sleep_into(); // 休眠定时器初始化
  242. // charge_init();
  243. // decection_charging_init();
  244. screen_queue = xQueueCreate(25, sizeof(Screen_dis_t));
  245. lora_data_queue = xQueueCreate(20, sizeof(LORA_DATA_T));
  246. yc_data_queue = xQueueCreate(20, sizeof(int));
  247. button_Data_queue = xQueueCreate(10, sizeof(uint8_t));
  248. // screen_semaphore = xSemaphoreCreateMutex();
  249. screen_event = xEventGroupCreate();
  250. // button_semaphore = xSemaphoreCreateMutex();
  251. #if 0
  252. lora_receiveQueue = xQueueCreate(100, sizeof(int));
  253. #else
  254. lora_dealhandle = xQueueCreate(100, sizeof(int));
  255. #endif
  256. sleep_queue = xQueueCreate(10, sizeof(uint8_t));
  257. // Send_Data_queue= xQueueCreate(10, sizeof(uint8_t)); //发送缓存数据任务
  258. if (sleep_queue != NULL)
  259. {
  260. // 创建队列成功,myQueue 包含有效的队列句柄
  261. // 在这里可以继续使用该队列
  262. }
  263. else
  264. {
  265. // 创建队列失败,myQueue 是 NULL
  266. // 需要处理创建失败的情况
  267. printf("---------------create fail-----------------\r\n");
  268. }
  269. wakeup_queue = xQueueCreate(10, sizeof(uint8_t));
  270. if (wakeup_queue != NULL)
  271. {
  272. // 创建队列成功,myQueue 包含有效的队列句柄
  273. // 在这里可以继续使用该队列
  274. }
  275. else
  276. {
  277. // 创建队列失败,myQueue 是 NULL
  278. // 需要处理创建失败的情况
  279. printf("---------------create fail-----------------\r\n");
  280. }
  281. extern unsigned char *last_paint_buf_left;
  282. extern unsigned char *last_paint_buf_right;
  283. extern uint32_t display_size;
  284. #if 0
  285. extern unsigned char *tmp_paint_buf;
  286. tmp_paint_buf = heap_caps_malloc(display_size,MALLOC_CAP_8BIT|MALLOC_CAP_SPIRAM); // 开辟 结构体句柄 所需要的空间
  287. if(tmp_paint_buf!=NULL)
  288. {
  289. //printf("tmp_paint_buf malloc success\r\n");
  290. }else
  291. {
  292. printf("tmp_paint_buf malloc fail\r\n");
  293. heap_caps_free(tmp_paint_buf);
  294. }
  295. #endif
  296. #if 1
  297. last_paint_buf_left = heap_caps_malloc(display_size, MALLOC_CAP_8BIT | MALLOC_CAP_SPIRAM); // 开辟所需要的空间
  298. if (last_paint_buf_left != NULL)
  299. {
  300. // printf("last_paint_buf_left malloc success\r\n");
  301. }
  302. else
  303. {
  304. printf("last_paint_buf_left malloc fail\r\n");
  305. heap_caps_free(last_paint_buf_left);
  306. }
  307. last_paint_buf_right = heap_caps_malloc(display_size, MALLOC_CAP_8BIT | MALLOC_CAP_SPIRAM); // 开辟所需要的空间
  308. if (last_paint_buf_right != NULL)
  309. {
  310. // printf("last_paint_buf_right malloc success\r\n");
  311. }
  312. else
  313. {
  314. printf("last_paint_buf_right malloc fail\r\n");
  315. heap_caps_free(last_paint_buf_right);
  316. }
  317. #endif
  318. int reson = esp_sleep_get_wakeup_cause(); // 获取当前唤醒原因
  319. if (reson == ESP_SLEEP_WAKEUP_EXT1)
  320. {
  321. adc1_init();
  322. // extern void dis_right_instructions();
  323. // dis_right_instructions();
  324. set_screen_dis_info_and_send_queue(true, false, false, false,100);
  325. int power_key = 0;
  326. int charge_key = 0;
  327. int value_count = 0;
  328. charge_key = gpio_get_level(2);
  329. printf("charge_key is %s\r\n", !charge_key ? "charge in" : "charge out");
  330. printf("charge_key is %s\r\n", !charge_key ? "charge in" : "charge out");
  331. printf("charge_key is %s\r\n", !charge_key ? "charge in" : "charge out");
  332. printf("charge_key is %s\r\n", !charge_key ? "charge in" : "charge out");
  333. Machine_info.batt_precent = read_battery_voltage();
  334. Machine_info.last_batt_precent = Machine_info.batt_precent;
  335. screen_dis_info.is_left = false;
  336. while (1)
  337. {
  338. // value++;
  339. charge_key = gpio_get_level(2);
  340. if (!charge_key) // 充电中
  341. {
  342. Machine_info.batt_precent = read_battery_voltage();
  343. if (Machine_info.batt_precent < 96)
  344. {
  345. user_compare_power_off(Machine_info.last_batt_precent, Machine_info.batt_precent);
  346. printf("charge_key is %s,batt=%d,last batt=%d\r\n", !charge_key ? "charge in" : "charge out", Machine_info.batt_precent, Machine_info.last_batt_precent);
  347. value_count++;
  348. if (value_count > 60)
  349. {
  350. Machine_info.last_batt_precent = Machine_info.batt_precent;
  351. value_count = 0;
  352. }
  353. }
  354. }
  355. else // 未充电
  356. {
  357. printf("charge_key is %s\r\n", !charge_key ? "charge in" : "charge out");
  358. // extern void dis_right_instructions();
  359. // dis_right_instructions();
  360. set_screen_dis_info_and_send_queue(true, false, false, false,100);
  361. printf("start power off\r\n");
  362. uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM);
  363. #if 1 // 电源按键
  364. // adc_oneshot_del_unit(adc1_handle);
  365. gpio_reset_pin(4);
  366. int ext_wakeup_pin_0 = 4;
  367. printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0);
  368. ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0));
  369. // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep.
  370. // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs.
  371. // No need to keep that power domain explicitly, unlike EXT1.
  372. ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0));
  373. ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0));
  374. gpio_reset_pin(2);
  375. const int ext_wakeup_pin_1 = 2;
  376. const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1;
  377. printf("Enabling EXT1 wakeup on pins GPIO%d\r\n", ext_wakeup_pin_1);
  378. ESP_ERROR_CHECK(esp_sleep_enable_ext1_wakeup(ext_wakeup_pin_1_mask, ESP_EXT1_WAKEUP_ALL_LOW));
  379. #endif
  380. esp_deep_sleep_start();
  381. break;
  382. }
  383. vTaskDelay(1000 / portTICK_PERIOD_MS);
  384. }
  385. }
  386. // xTaskCreate( left_screen_task, "left_screen_task", 25*1024, NULL, configMAX_PRIORITIES - 1, NULL);
  387. // idf.py 设置分区
  388. spiffs_init();
  389. extern uint32_t ulp_wakeup_result;
  390. if (
  391. (reson != ESP_SLEEP_WAKEUP_EXT0) &&
  392. (reson != ESP_SLEEP_WAKEUP_ULP) &&
  393. (reson != ESP_SLEEP_WAKEUP_TIMER))
  394. {
  395. #if PRINT_SPIFFS
  396. printHexData(&default_info, sizeof(Machine_info_t));
  397. // spiffs_write(&default_info);
  398. #endif
  399. spiffs_read_powerOn(&Machine_info);
  400. // 重新初始化开机后默认关机
  401. Machine_info.power_status = 0;
  402. user_nvs_init();
  403. }
  404. if (reson == ESP_SLEEP_WAKEUP_EXT0)
  405. {
  406. #if 0
  407. adc1_init();
  408. int value = 0;
  409. while(1)
  410. {
  411. value++;
  412. adc_read_left_key_pin(adc1_handle);
  413. vTaskDelay(10 / portTICK_PERIOD_MS);
  414. if(value>10)
  415. {
  416. break;
  417. }
  418. }
  419. #else
  420. int power_key = 0;
  421. adc1_init();
  422. while (1)
  423. {
  424. // value++;
  425. power_key = gpio_get_level(4);
  426. vTaskDelay(4000 / portTICK_PERIOD_MS);
  427. if (0 == gpio_get_level(4))
  428. {
  429. if (read_battery_voltage() < 10) // 判断电压小于10% 不让开机
  430. {
  431. printf("start power off\r\n");
  432. uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM);
  433. #if 1 // 电源按键
  434. // adc_oneshot_del_unit(adc1_handle);
  435. gpio_reset_pin(4);
  436. int ext_wakeup_pin_0 = 4;
  437. printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0);
  438. ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0));
  439. // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep.
  440. // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs.
  441. // No need to keep that power domain explicitly, unlike EXT1.
  442. ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0));
  443. ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0));
  444. gpio_reset_pin(2);
  445. const int ext_wakeup_pin_1 = 2;
  446. const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1;
  447. printf("Enabling EXT1 wakeup on pins GPIO%d\r\n", ext_wakeup_pin_1);
  448. ESP_ERROR_CHECK(esp_sleep_enable_ext1_wakeup(ext_wakeup_pin_1_mask, ESP_EXT1_WAKEUP_ALL_LOW));
  449. #endif
  450. esp_deep_sleep_start();
  451. }
  452. adc_oneshot_del_unit(adc1_handle); // 删除adc使用
  453. uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM);
  454. #if 1 // USER_DEEP_SLEEP_ENABLE
  455. reson = is_wake_up_reson(); // 返回唤醒的原因
  456. ESP_LOGW(LOG_TAG, "power on- reson = %d\r\n", reson);
  457. /* ULP Risc-V read and detected a temperature above the limit */
  458. if (reson == ESP_SLEEP_WAKEUP_EXT0)
  459. {
  460. if (Machine_info.power_status == 0)
  461. {
  462. Machine_info.power_status = 1; // 开机
  463. lora_set_power_level(1); // 打开lora电源
  464. // 恢复串口i功能
  465. uart_sleep_out_config();
  466. beep_blink(1000, 1);
  467. Machine_info.left_current_Quick_refresh_time = 5;
  468. vTaskDelay(1000 / portTICK_PERIOD_MS);
  469. // printf("开机刷屏\r\n");
  470. // if(xQueueSend(screen_queue,&Machine_info,portMAX_DELAY) != true)
  471. // {
  472. // printf("left send fail\r\n");
  473. // }
  474. }
  475. else if (Machine_info.power_status == 1)
  476. {
  477. printf("aready power on\r\n");
  478. }
  479. }
  480. #endif
  481. break;
  482. }
  483. else
  484. {
  485. printf("start power off\r\n");
  486. uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM);
  487. #if 1 // 电源按键
  488. // adc_oneshot_del_unit(adc1_handle);
  489. gpio_reset_pin(4);
  490. int ext_wakeup_pin_0 = 4;
  491. printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0);
  492. ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0));
  493. // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep.
  494. // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs.
  495. // No need to keep that power domain explicitly, unlike EXT1.
  496. ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0));
  497. ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0));
  498. gpio_reset_pin(2);
  499. const int ext_wakeup_pin_1 = 2;
  500. const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1;
  501. printf("Enabling EXT1 wakeup on pins GPIO%d\r\n", ext_wakeup_pin_1);
  502. ESP_ERROR_CHECK(esp_sleep_enable_ext1_wakeup(ext_wakeup_pin_1_mask, ESP_EXT1_WAKEUP_ALL_LOW));
  503. #endif
  504. esp_deep_sleep_start();
  505. }
  506. }
  507. #endif
  508. printf("deep Wake up from ext0\n");
  509. }
  510. else if (reson == ESP_SLEEP_WAKEUP_ULP)
  511. {
  512. printf("wakeup_result = %ld\r\n", ulp_wakeup_result);
  513. // int key = find_key_value(ulp_wakeup_result);
  514. // printf("key = %d\r\n",key);
  515. #if 1
  516. // reson = is_wake_up_reson(); //返回唤醒的原因
  517. /* ULP Risc-V read and detected a temperature above the limit */
  518. if (reson == ESP_SLEEP_WAKEUP_ULP)
  519. {
  520. if (Machine_info.power_status == 0)
  521. {
  522. printf("left key press power off\r\n");
  523. uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM);
  524. #if 1
  525. font_into_sleep();
  526. #include "EPD.h"
  527. epd_sleep(SCREEN_LEFT);
  528. epd_sleep(SCREEN_RIGHT);
  529. // gpio_hold_en(PIN_L_CS);
  530. // gpio_hold_en(PIN_R_CS);
  531. // gpio_set_level(PIN_L_CS,1);
  532. // gpio_set_level(PIN_R_CS,1);
  533. // gpio_reset_pin(46);
  534. // uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM);
  535. // ESP_ERROR_CHECK(uart_wait_tx_done(UART_NUM_1,portMAX_DELAY));
  536. esp_sleep_disable_wakeup_source(ESP_SLEEP_WAKEUP_TIMER);
  537. // gpio_set_level(LORA_TXD_PIN, 0);
  538. // gpio_set_level(LORA_RXD_PIN, 0);
  539. // uart_sleep_in_config();
  540. uart_driver_delete(UART_NUM_1);
  541. gpio_reset_pin(LORA_TXD_PIN);
  542. gpio_reset_pin(LORA_RXD_PIN);
  543. gpio_config_t io_conf = {};
  544. io_conf.pin_bit_mask = (1 << LORA_TXD_PIN);
  545. io_conf.mode = GPIO_MODE_OUTPUT;
  546. io_conf.pull_up_en = false;
  547. gpio_config(&io_conf);
  548. io_conf.pin_bit_mask = (1 << LORA_RXD_PIN);
  549. io_conf.mode = GPIO_MODE_OUTPUT;
  550. io_conf.pull_up_en = false;
  551. gpio_config(&io_conf);
  552. gpio_set_level(LORA_TXD_PIN, 0);
  553. gpio_set_level(LORA_RXD_PIN, 0);
  554. gpio_hold_en(LORA_TXD_PIN);
  555. gpio_hold_en(LORA_RXD_PIN);
  556. // 电源按键
  557. // adc_oneshot_del_unit(adc1_handle);
  558. gpio_reset_pin(4);
  559. int ext_wakeup_pin_0 = 4;
  560. // printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0);
  561. ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0));
  562. // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep.
  563. // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs.
  564. // No need to keep that power domain explicitly, unlike EXT1.
  565. ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0));
  566. ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0));
  567. // 充电按键
  568. gpio_reset_pin(2);
  569. const int ext_wakeup_pin_1 = 2;
  570. const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1;
  571. printf("Enabling EXT1 wakeup on pins GPIO%d\r\n", ext_wakeup_pin_1);
  572. ESP_ERROR_CHECK(esp_sleep_enable_ext1_wakeup(ext_wakeup_pin_1_mask, ESP_EXT1_WAKEUP_ALL_LOW));
  573. esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON);
  574. ESP_ERROR_CHECK(esp_sleep_enable_ulp_wakeup());
  575. #endif
  576. esp_deep_sleep_start();
  577. }
  578. else
  579. {
  580. int btn = left_adc_wake_btn_send();
  581. ESP_LOGE(LOG_TAG, "btn = %d", btn);
  582. Machine_info.left_state = btn;
  583. beep_blink(30, 1);
  584. #if 1
  585. set_screen_dis_info_and_send_queue(true, true, false, false,100);
  586. #endif
  587. while (1)
  588. {
  589. vTaskDelay(20 / portTICK_PERIOD_MS);
  590. }
  591. }
  592. }
  593. #endif
  594. }
  595. #if 0
  596. // info_init();
  597. // board_init();
  598. #else
  599. #if USER_DEEP_SLEEP_ENABLE
  600. int reson = is_wake_up_reson(); // 返回唤醒的原因
  601. printf(" info_init reson = %d\r\n", reson);
  602. // idf.py 设置分区
  603. spiffs_init();
  604. /* not a wakeup from ULP, load the firmware */
  605. if ((reson != ESP_SLEEP_WAKEUP_ULP) && (reson != ESP_SLEEP_WAKEUP_TIMER))
  606. {
  607. #if 1
  608. // uint8_t yc_name[6] = {0xd2,0xcf,0xb3,0xb2,0x00,0x00};
  609. Machine_info_t default_info = {
  610. .left_display_mode = 0,
  611. //.left_state =1,
  612. .eflagID = 0xFF,
  613. .rssi = 0x64,
  614. .refresh_cycle = 2,
  615. .batt_precent = 100,
  616. };
  617. spiffs_write(&default_info);
  618. #endif
  619. spiffs_read(&Machine_info);
  620. }
  621. else
  622. {
  623. }
  624. #endif
  625. #if USER_NOT_SLEEP_ENABLE || USER_LIGHT_SLEEP_ENABLE || USER_DEEP_SLEEP_ENABLE
  626. lora_init();
  627. #endif
  628. #if USER_NOT_SLEEP_ENABLE || USER_LIGHT_SLEEP_ENABLE || USER_DEEP_SLEEP_ENABLE
  629. adc1_init();
  630. #endif
  631. #if USER_NOT_SLEEP_ENABLE || USER_LIGHT_SLEEP_ENABLE || USER_DEEP_SLEEP_ENABLE
  632. button_init(adc1_handle); // 左侧按键
  633. power_button_init(adc1_handle); // 右侧电源按键
  634. Machine_info.batt_precent = read_battery_voltage();
  635. Machine_info.last_batt_precent = Machine_info.batt_precent;
  636. #endif
  637. #if USER_NOT_SLEEP_ENABLE || USER_LIGHT_SLEEP_ENABLE || USER_DEEP_SLEEP_ENABLE
  638. // timer_init();
  639. #endif
  640. //////////////////////////////////////////////////////////////////////////////////////////////////
  641. #endif
  642. xTaskCreate(button_task, "button_task", 5 * 2048, NULL, configMAX_PRIORITIES, NULL);
  643. // xTaskCreate( right_screen_task, "right_screen_task",15*1024, NULL, configMAX_PRIORITIES - 2, NULL);
  644. xTaskCreate(screen_task, "screen_task", 40 * 1024, NULL, configMAX_PRIORITIES - 2, NULL);
  645. printf("=================================UPDATE OK===========================\r\n");
  646. #if 1
  647. xTaskCreate(business_logic_task, "business_logic_task", 25 * 1024, NULL, YC_TASK_NONE, NULL);
  648. // xTaskCreate( unpack_task, "unpack_task", 5*1024, NULL, YC_TASK_UNPACK, NULL);
  649. #if !USER_QIXIN //
  650. xTaskCreate(lora_task, "lora_task", 5 * 1024, NULL, configMAX_PRIORITIES, NULL);
  651. #endif
  652. #if 0
  653. xTaskCreate(gui_task, "gui_task", 4096 * 2, NULL, 5, NULL);
  654. #endif
  655. #if 1 // 任务处理函数
  656. xTaskCreate(read_deal_data_callback_handler, "read_deal_data_task", 1024 * 8, NULL, configMAX_PRIORITIES, NULL);
  657. #endif
  658. // 添加定时发送当前是否有链表数据
  659. // xTaskCreate(Sendlist_task_callback_handler, "Sendlist_task", 1024*8, NULL, configMAX_PRIORITIES, NULL);
  660. #endif
  661. // 打印系统信息
  662. print_systenInfo();
  663. }
  664. static void screen_task(void *arg)
  665. {
  666. Machine_info.rssi = 100; // 没有获取到真数据,默认100
  667. int reson = is_wake_up_reson(); // 返回唤醒的原因
  668. ESP_LOGW(LOG_TAG, "screen_task %d", reson);
  669. if ((reson != ESP_SLEEP_WAKEUP_ULP) && (reson != ESP_SLEEP_WAKEUP_TIMER) && (reson != ESP_SLEEP_WAKEUP_EXT0))
  670. {
  671. // Paint_leftScreen_main_powerOn();
  672. // Paint_rightScreen_main_powerON();
  673. Paint_leftScreen(Machine_info.power_status, false);
  674. Paint_rightScreen(Machine_info.power_status, false);
  675. }
  676. else if (reson == ESP_SLEEP_WAKEUP_EXT0)
  677. {
  678. // 按键从深睡唤醒,开机刷新屏慕
  679. ESP_LOGW(LOG_TAG, "按键从深睡唤醒,开机刷新屏慕");
  680. // Paint_leftScreen_main_slow(&Machine_info);
  681. // Paint_rightScreen_main_slow(&Machine_info);
  682. Paint_leftScreen(Machine_info.power_status, false);
  683. Paint_rightScreen(Machine_info.power_status, false);
  684. }
  685. Screen_dis_t screen_rev_info;
  686. screen_rev_info.is_left = false;
  687. screen_rev_info.is_into_sleep = true;
  688. Machine_info.left_current_Quick_refresh_time = 1; // 开机慢刷
  689. while (1)
  690. {
  691. if (xQueueReceive(screen_queue, &screen_rev_info, (TickType_t)portMAX_DELAY))
  692. {
  693. ESP_LOGW(LOG_TAG, "screen_rev_info==>%s , %s ,%s ,%s", screen_rev_info.is_left ? "left refreshing" : "right refreshing", screen_rev_info.is_into_sleep ? "into sleep" : "not sleep",
  694. screen_rev_info.is_change_power?"change power":"not change power",screen_rev_info.is_dont_dis?"dont dis":"dis");
  695. if (screen_rev_info.is_dont_dis)
  696. {
  697. ESP_LOGE(LOG_TAG, "goto -> dont_dis");
  698. goto dont_dis;
  699. }
  700. font_exit_sleep();
  701. if (screen_rev_info.is_left) // 刷左屏
  702. {
  703. if (Machine_info.left_current_Quick_refresh_time >= Machine_info.left_max_Quick_refresh_time)
  704. {
  705. Machine_info.left_current_Quick_refresh_time = 0;
  706. Paint_leftScreen(Machine_info.power_status, false);
  707. }
  708. else
  709. {
  710. Machine_info.left_current_Quick_refresh_time++;
  711. Paint_leftScreen(Machine_info.power_status, true);
  712. }
  713. }
  714. else // 刷右屏
  715. {
  716. if (Machine_info.right_current_Quick_refresh_time == 0)
  717. {
  718. Machine_info.right_current_Quick_refresh_time = 1;
  719. Paint_rightScreen(Machine_info.power_status, true);
  720. }
  721. else
  722. {
  723. Paint_rightScreen(Machine_info.power_status, false);
  724. }
  725. }
  726. dont_dis:
  727. if ((Machine_info.power_status == 1) && (Machine_info.paired == 1) && screen_rev_info.is_into_sleep)
  728. {
  729. // ESP_LOGD(LOG_TAG, "100ms sleep %s", screen_rev_info.is_left ? "left" : "right");
  730. if (screen_rev_info.is_change_power)
  731. {
  732. ESP_LOGE(LOG_TAG,"=============power_status %s======== set power off",Machine_info.power_status?"is power on":"is power off");
  733. Machine_info.power_status = 0; // 关机
  734. }
  735. sleep_timer_start(screen_rev_info.sleep_ms); // 进入睡眠
  736. }
  737. // if(Machine_info.power_status == 0 )//展示说明书都是先左后右,等右屏刷完再休眠
  738. // {
  739. // printf("=>screen deep sleep\r\n");
  740. // // uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM);
  741. // // #if 1 //电源按键
  742. // // gpio_reset_pin(4);
  743. // // int ext_wakeup_pin_0 = 4;
  744. // // printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0);
  745. // // ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0));
  746. // // // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep.
  747. // // // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs.
  748. // // // No need to keep that power domain explicitly, unlike EXT1.
  749. // // ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0));
  750. // // ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0));
  751. // // esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON);
  752. // // ESP_ERROR_CHECK( esp_sleep_enable_ulp_wakeup());
  753. // // #endif
  754. // // esp_deep_sleep_start();
  755. // }
  756. }
  757. }
  758. }
  759. static void button_task(void *arg)
  760. {
  761. // update_last_button_info(Machine_info.current_button.button_info);//初始化上个按键为运行,用作paint0703计时
  762. uint8_t button_info;
  763. while (1)
  764. {
  765. if (xQueueReceive(button_Data_queue, &button_info, (TickType_t)portMAX_DELAY))
  766. {
  767. #if 1
  768. ESP_LOGI(LOG_TAG, "btn_flag[%d][%d][%d][%d][%d][%d],button_info = [%d]%s ", Machine_info.btn_dis_flag[0],
  769. Machine_info.btn_dis_flag[1], Machine_info.btn_dis_flag[2], Machine_info.btn_dis_flag[3], Machine_info.btn_dis_flag[4],
  770. Machine_info.btn_dis_flag[5], button_info, Machine_info.power_status ? "poweron" : "poweroff");
  771. ESP_LOGI(LOG_TAG, "batt_precent[%d]\ncid[%s]\nlast_button[%d]\nlora_new_channel[%d]\neflagID[%d]\nDuration_time[%ld]rssi[%d]paired[%s]",
  772. Machine_info.batt_precent,
  773. Machine_info.cid,
  774. Machine_info.last_button.button_info,
  775. Machine_info.lora_new_channel,
  776. Machine_info.eflagID,
  777. Machine_info.Duration_time,
  778. Machine_info.rssi,
  779. Machine_info.paired ? "paired" : "not pair");
  780. // print_lora_set_info();
  781. #endif
  782. if (button_info < 0x12) // 左屏慕按键
  783. {
  784. // vTaskDelay(200/ portTICK_PERIOD_MS);
  785. // print_lora();//按键查询lora配置
  786. if (Machine_info.btn_dis_flag[button_info - 1] == false)
  787. {
  788. printf("btn is close\n");
  789. button_info = STATE_OPERATION; // 按键关闭,默认运行
  790. if ((Machine_info.power_status == 1) && (Machine_info.paired == 1))
  791. {
  792. set_screen_dis_info_and_send_queue(false, false, false, true,100);
  793. // sleep_timer_start(100); // 进入睡眠
  794. }
  795. }
  796. Machine_info.current_button.button_info = button_info;
  797. // 判断当前的按键状态 设置为当前状态后 再次按键不处理
  798. printf("last btn = %d ,curr btn = %d\n", Machine_info.last_button.button_info, Machine_info.current_button.button_info);
  799. if (Machine_info.last_button.button_info != Machine_info.current_button.button_info)
  800. {
  801. if (Machine_info.paired == 1)
  802. {
  803. // printf("paired add data to list chanl = 0x%02x\r\n",Machine_info.lora_new_channel);
  804. getRtcTime(&Machine_info); // 获取当前时间
  805. // 更新当前时间
  806. Machine_info.current_button.button_info = button_info;
  807. Machine_info.current_button.Year = Machine_info.year;
  808. Machine_info.current_button.Month = Machine_info.month;
  809. Machine_info.current_button.Day = Machine_info.day;
  810. Machine_info.current_button.Hour = Machine_info.hour;
  811. Machine_info.current_button.Minute = Machine_info.min;
  812. Machine_info.current_button.Second = Machine_info.sec;
  813. long long current_Duration_time = calculate_minutes_difference(
  814. Machine_info.last_button.Year,
  815. Machine_info.last_button.Month,
  816. Machine_info.last_button.Day,
  817. Machine_info.last_button.Hour,
  818. Machine_info.last_button.Minute,
  819. Machine_info.last_button.Second,
  820. Machine_info.current_button.Year,
  821. Machine_info.current_button.Month,
  822. Machine_info.current_button.Day,
  823. Machine_info.current_button.Hour,
  824. Machine_info.current_button.Minute,
  825. Machine_info.current_button.Second);
  826. Machine_info.Duration_time = current_Duration_time; // 持续时长
  827. printf("Machine_info.Duration_time = %ld\r\n", Machine_info.Duration_time);
  828. reset_btn_last_time();
  829. #if 0
  830. printf("list before\r\n");
  831. printList(Send_list);
  832. if(Machine_info.Duration_time == 0)
  833. {
  834. deleteNode_head(Send_list);
  835. }
  836. printf("list after\r\n");
  837. printList(Send_list);
  838. #endif
  839. set_status_heights();
  840. Machine_info.Duration_time = 0;
  841. // 更新上次的状态
  842. update_last_button_info(Machine_info.last_button.button_info);
  843. }
  844. else
  845. {
  846. printf("not add data to list\r\n");
  847. }
  848. Machine_info.last_button.button_info = Machine_info.current_button.button_info;
  849. // Machine_info.left_state = button_info;
  850. Machine_info.left_state = Machine_info.current_button.button_info;
  851. #if 1
  852. set_screen_dis_info_and_send_queue(true, true, false, false,100);
  853. #endif
  854. beep_blink(30, 1);
  855. // printList(Send_list);
  856. // printList(list_head);
  857. }
  858. else // 和上个按键重复,唤醒原因为ulp唤醒,不进入休眠
  859. {
  860. printf("repeat ,goto sleep !\r\n");
  861. // sleep_timer_start(100); // 开始进入倒计时休眠
  862. set_screen_dis_info_and_send_queue(false, false, false, true,1000);
  863. }
  864. }
  865. else // 右屏幕按键触发
  866. {
  867. if (button_info == POWER_ON_PRESS_VALUE) // power 开机时短按
  868. {
  869. beep_blink(30, 1);
  870. if ((Machine_info.power_status == 1) && (Machine_info.paired == 1))
  871. {
  872. // 判断当前开机 是否配对 继续执行时间片操作
  873. // sleep_timer_start(100); // 开始进入倒计时休眠
  874. set_screen_dis_info_and_send_queue(false, false, false, true,1000);
  875. }
  876. }
  877. // if (button_info == POWER_OFF_PRESS_VALUE) // power 关机时短按
  878. // {
  879. // sleep_timer_start(100); // 开始进入倒计时休眠
  880. // }
  881. if (button_info == POWER_ON_INTO_STATUS_CHANGE_VALUE) // power 长按触发
  882. {
  883. extern bool is_sleep;
  884. is_sleep = false;//强制不休眠
  885. beep_blink(1000, 1);
  886. if (Machine_info.power_status == 1) // 开机状态
  887. {
  888. // Machine_info.power_status = 0;
  889. // screen_dis_info.is_change_power = true;
  890. xQueueReset(screen_queue);
  891. set_screen_dis_info_and_send_queue(false, true, false, false,100);
  892. set_screen_dis_info_and_send_queue(true, false, true, false,1000);//关机
  893. printf("poweron->poweroff\r\n");
  894. }
  895. else if (Machine_info.power_status == 0)
  896. {
  897. printf("power on\r\n");
  898. Machine_info.power_status = 1;
  899. lora_set_power_level(1);
  900. font_exit_sleep();
  901. gpio_hold_dis(LORA_TXD_PIN);
  902. gpio_hold_dis(LORA_RXD_PIN);
  903. gpio_hold_dis(PIN_L_CS);
  904. gpio_hold_dis(PIN_R_CS);
  905. // 恢复串口i功能
  906. uart_sleep_out_config();
  907. set_screen_dis_info_and_send_queue(false, true, false, false,100);
  908. set_screen_dis_info_and_send_queue(true, false, false, false,100);
  909. }
  910. }
  911. if (button_info == POWER_ON_INTO_DIS_RIGHT)
  912. {
  913. xQueueReset(screen_queue);
  914. Machine_info.left_current_Quick_refresh_time = 5;
  915. set_screen_dis_info_and_send_queue(false, true, false, false,100);
  916. set_screen_dis_info_and_send_queue(true, false, false, false,100);
  917. }
  918. if (button_info == POWER_ON_INTO_OTA_VALUE) // 进入OTA模式
  919. {
  920. beep_blink(50, 3);
  921. printf("into ota mode\r\n");
  922. #include "iot_button.h"
  923. iot_button_stop();
  924. esp_ble_ota();
  925. }
  926. if (button_info == POWER_ON_INTO_RESET_VALUE) // 进入配网模式
  927. {
  928. beep_blink(2000, 1);
  929. printf("into reset mode\r\n");
  930. font_exit_sleep();
  931. lora_set_power_level(1);
  932. uart_sleep_out_config();
  933. #include "user_sleep.h"
  934. // #include "esp_sleep.h"
  935. extern void sleep_timer_stop();
  936. extern void Already_send_timer_stop();
  937. sleep_timer_stop();
  938. Already_send_timer_stop();
  939. // //修改信道前修改设备ID 及 设备ID
  940. // dymatic_change_device_id(0x00000001);
  941. // dymatic_change_dst_device_id(0xFFFFFFFF);
  942. // //切换信道
  943. // dymatic_change_chanel(Machine_info.lora_factory_channel); //切换信道
  944. // // spiffs_read(&Machine_info);
  945. vTaskDelay(300 / portTICK_PERIOD_MS);
  946. reset_default(true, 1);
  947. reset_lora(LORA_CHANENL);
  948. vTaskDelay(300 / portTICK_PERIOD_MS);
  949. }
  950. }
  951. }
  952. }
  953. }
  954. static void business_logic_task(void *arg)
  955. {
  956. // YC_DATA_T tmp;
  957. int len = 0;
  958. bool is_refresh = false;
  959. for (;;)
  960. {
  961. if (xQueueReceive(yc_data_queue, &len, (TickType_t)portMAX_DELAY))
  962. {
  963. #if 1
  964. is_refresh = subcontract(&yc_data);
  965. if (is_refresh)
  966. {
  967. screen_display();
  968. }
  969. else
  970. {
  971. printf("not display fresh\r\n");
  972. }
  973. #endif
  974. free(yc_data.data); // 释放内存
  975. yc_data.data = NULL;
  976. yc_data.len = 0;
  977. yc_data.index = 0;
  978. }
  979. }
  980. }
  981. static void unpack_task(void *arg)
  982. {
  983. LORA_DATA_T tmp_data;
  984. extern esp_timer_handle_t lora_timer;
  985. for (;;)
  986. {
  987. if (xQueueReceive(lora_data_queue, &tmp_data, (TickType_t)portMAX_DELAY))
  988. {
  989. if (!esp_timer_is_active(lora_timer))
  990. {
  991. lora_timer_start();
  992. }
  993. else
  994. {
  995. lora_timer_restart();
  996. }
  997. yc_data.len += tmp_data.data_len;
  998. memcpy(yc_data.data + yc_data.index, tmp_data.data_buf, tmp_data.data_len);
  999. yc_data.index += tmp_data.data_len;
  1000. }
  1001. }
  1002. }
  1003. static void lora_task(void *arg)
  1004. {
  1005. lora_event_task(arg);
  1006. }
  1007. // /*********************************************************************************
  1008. // * function : Sendlist_task_callback_handler
  1009. // * Description : 发送处理链表函数
  1010. // * Input :
  1011. // * Output :
  1012. // * Author : 祁鑫 Data : 2023 9.12
  1013. // **********************************************************************************/
  1014. // void Sendlist_task_callback_handler()
  1015. // {
  1016. // int length = 0;
  1017. // uint8_t* result = (uint8_t*) malloc(buffer_size+1);
  1018. // TickType_t xLastWakeTime;
  1019. // #if 0
  1020. // const TickType_t xFrequency = 400/10; // 定时通知的间隔
  1021. // #else
  1022. // const TickType_t xFrequency = 500/10; // 定时通知的间隔
  1023. // #endif
  1024. // // 初始化xLastWakeTime
  1025. // xLastWakeTime = xTaskGetTickCount();
  1026. // int receive_times = 0;
  1027. // int user_size = 0;
  1028. // int result_length = 0;
  1029. // //int result_length = 0;
  1030. // static int result_index = 0;
  1031. // int result_data_len = 0;
  1032. // while (1) {
  1033. // #if 0
  1034. // //定时通知数据处理任务有新数据可用
  1035. // vTaskDelayUntil(&xLastWakeTime, xFrequency);
  1036. // #endif
  1037. // if(xQueueReceive(Send_Data_queue, &length, portMAX_DELAY) == pdPASS)
  1038. // {
  1039. // //int len = countNodes(Send_list); /* returns the number of nodes in the list */
  1040. // Node *list = Send_list; //发送数据链表
  1041. // int len = countNodes(Send_list); /* returns the number of nodes in the list */
  1042. // if(len!=0)
  1043. // {
  1044. // printf("current wait send num data=%d\r\n",len);
  1045. // #if 1
  1046. // //int len = countNodes(list); /* returns the number of nodes in the list */
  1047. // while(len)
  1048. // {
  1049. // //int busy = get_lora_busy_pin();
  1050. // //printf("busy = %d\r\n",busy);
  1051. // printf("send times\r\n");
  1052. // //if()
  1053. // lora_send_data((char *)list->data,list->len);
  1054. // list=list->next;
  1055. // len--;
  1056. // }
  1057. // //Send_list = deleteList(Send_list);
  1058. // free(list);
  1059. // #endif
  1060. // }
  1061. // #if 0
  1062. // for (int i = 0; i < len; i++)
  1063. // {
  1064. // printf("%02x",result[i]);
  1065. // }
  1066. // #endif
  1067. // }
  1068. // }
  1069. // }
  1070. /*********************************************************************************
  1071. * function : uart_task_callback_handler
  1072. * Description : 串口0函数
  1073. * Input :
  1074. * Output :
  1075. * Author : 祁鑫 Data : 2023 9.12
  1076. **********************************************************************************/
  1077. void uart_task_callback_handler()
  1078. {
  1079. // #include "driver/uart.h"
  1080. // uint8_t dtmp[200]= {0};
  1081. // while (1)
  1082. // {
  1083. // printf("uart 0 rev = ");
  1084. // int len = uart_read_bytes(UART_NUM_0, dtmp, 1024,200/portTICK_PERIOD_MS);
  1085. // if(len)
  1086. // {
  1087. // for(int i = 0;i<len;i++)
  1088. // printf("%02X",dtmp[i]);
  1089. // printf("\r\n");
  1090. // }
  1091. // printf("\r\n");
  1092. // vTaskDelay(1000 / portTICK_PERIOD_MS);
  1093. // }
  1094. }
  1095. /*********************************************************************************
  1096. * function : read_deal_data_callback_handler
  1097. * Description : 定时处理函数
  1098. * Input :
  1099. * Output :
  1100. * Author : 祁鑫 Data : 2023 9.12
  1101. **********************************************************************************/
  1102. void read_deal_data_callback_handler()
  1103. {
  1104. #if 0
  1105. int length = 0;
  1106. uint8_t* result = (uint8_t*) malloc(buffer_size+1);
  1107. TickType_t xLastWakeTime;
  1108. #if 1
  1109. const TickType_t xFrequency = 100/10; // 定时通知的间隔
  1110. #else
  1111. const TickType_t xFrequency = 500; // 定时通知的间隔
  1112. #endif
  1113. // 初始化xLastWakeTime
  1114. xLastWakeTime = xTaskGetTickCount();
  1115. int receive_times = 0;
  1116. int user_size = 0;
  1117. int result_length = 0;
  1118. //int result_length = 0;
  1119. static int result_index = 0;
  1120. int result_data_len = 0;
  1121. #include "y_ringbuf.h"
  1122. extern struct RINGBUF_st;
  1123. extern RINGBUF_st *lora_ringbuf;
  1124. while (1) {
  1125. // 定时通知数据处理任务有新数据可用
  1126. vTaskDelayUntil(&xLastWakeTime, xFrequency);
  1127. user_size = y_ringbuf_get_used_size(lora_ringbuf);
  1128. #if USER_OTA
  1129. if(user_size>=0)
  1130. #endif
  1131. if(user_size>0)
  1132. {
  1133. #if 0
  1134. for (int i = 0; i < len; i++)
  1135. {
  1136. printf("%02x",result[i]);
  1137. }
  1138. #endif
  1139. printf("times comming length=%d\r\n",user_size);
  1140. if(user_size == 36)
  1141. {
  1142. y_ringbuf_read_clear(lora_ringbuf, result, user_size); //读取并清除数据
  1143. }
  1144. #if 1
  1145. int len = y_ringbuf_read_clear(lora_ringbuf, result, user_size); //读取并清除数据
  1146. yc_data.len = user_size;
  1147. yc_data.data = malloc(sizeof(uint8_t)*user_size);//分配内存
  1148. memcpy(yc_data.data,result,user_size);
  1149. //lora_send_queue_callback(result,len); //发送消息处理函数
  1150. if(xQueueSend(yc_data_queue,&len,0) != true)
  1151. {
  1152. ESP_LOGE(LOG_TAG,"yc_data_queue send is fail");
  1153. }
  1154. #endif
  1155. #if USER_OTA
  1156. if((user_size>1024)||(user_size == 0) || (((user_size<1024))&&(is_ota ==true)) )
  1157. if(xQueueSend(ota_queue,&user_size,0) != true)
  1158. {
  1159. ESP_LOGE(LOG_TAG,"ota_queue send is fail");
  1160. }
  1161. #endif
  1162. }
  1163. }
  1164. #else
  1165. int length = 0;
  1166. uint8_t *result = (uint8_t *)malloc(buffer_size + 1);
  1167. int user_size = 0;
  1168. while (1)
  1169. {
  1170. if (xQueueReceive(lora_dealhandle, &length, portMAX_DELAY) == pdPASS)
  1171. {
  1172. if (rssi != 0)
  1173. {
  1174. Machine_info.rssi = rssi;
  1175. }
  1176. // printf("deal data\r\n");
  1177. user_size = y_ringbuf_get_used_size(lora_ringbuf);
  1178. if (user_size > 0)
  1179. {
  1180. ESP_LOGI(LOG_TAG, "-->lora len = %d\r\n", user_size);
  1181. #if 0
  1182. if(user_size == 36)
  1183. {
  1184. y_ringbuf_read_clear(lora_ringbuf, result, user_size); //读取并清除数据
  1185. #if 1
  1186. for (int i = 0; i < user_size; i++)
  1187. {
  1188. printf("%02x",result[i]);
  1189. }
  1190. #endif
  1191. }else
  1192. #endif
  1193. {
  1194. #if 1
  1195. int len = y_ringbuf_read_clear(lora_ringbuf, result, user_size); // 读取并清除数据
  1196. #if 0
  1197. for (int i = 0; i < user_size; i++)
  1198. {
  1199. printf("%02x",result[i]);
  1200. }
  1201. printf("\r\n");
  1202. #endif
  1203. ESP_LOG_BUFFER_HEX("from gateway lora", result, user_size);
  1204. yc_data.len = user_size;
  1205. yc_data.data = malloc(sizeof(uint8_t) * user_size); // 分配内存
  1206. memcpy(yc_data.data, result, user_size);
  1207. // lora_send_queue_callback(result,len); //发送消息处理函数
  1208. if (xQueueSend(yc_data_queue, &len, (TickType_t)portMAX_DELAY) != true)
  1209. {
  1210. ESP_LOGE(LOG_TAG, "yc_data_queue send is fail");
  1211. }
  1212. #endif
  1213. }
  1214. }
  1215. }
  1216. }
  1217. #endif
  1218. }