#include #include #include #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "freertos/queue.h" #include "freertos/semphr.h" #include "esp_log.h" #include "esp_system.h" #include "freertos/event_groups.h" #include "esp_timer.h" #include "esp_err.h" #include "user_config.h" //#include "lvgl/lvgl.h" #include"LED.h" #include"list.h" #include "freertos/timers.h" #include "user_sleep.h" #include "esp_sleep.h" #include "esp_sleep.h" //#include "ble_ota.h" #include "batt_charge.h" #include "user_time.h" #include "driver/uart.h" #include "driver/rtc_io.h" char user_device_id[50] ={0}; RTC_FAST_ATTR unsigned char power = 0; #define MAX_RETRY_ACK 3 //最大重传次数停止发送数据 int retry_times = 0; bool powerOn_flag = false; static const char *LOG_TAG = "user_main"; extern Node *Send_list; //发送数据链表 YC_DATA_T yc_data; //ListNode *list_head = NULL; adc_oneshot_unit_handle_t adc1_handle; QueueHandle_t screen_queue; QueueHandle_t lora_data_queue; QueueHandle_t yc_data_queue; QueueHandle_t button_Data_queue; EventGroupHandle_t screen_event; extern QueueHandle_t lora_receiveQueue; //lora底层数据上报 extern QueueHandle_t lora_dealhandle; //开始处理逻辑的数据 QueueHandle_t sleep_queue; QueueHandle_t wakeup_queue; QueueHandle_t Send_Data_queue; //发送链表任务 SemaphoreHandle_t button_semaphore; //刷新屏幕时都得加上按键互斥锁 // SemaphoreHandle_t screen_semaphore; //刷新屏幕时都得加上互斥锁 #if !HARDWARE_SPI struct EPD_INFO_SET left_screen = {}; struct EPD_INFO_SET right_screen = {}; #endif extern LORA_DATA_T lora_data; extern TERMINAL_INFO_T terminal_info; #include "y_ringbuf.h" extern struct RINGBUF_st; extern RINGBUF_st *lora_ringbuf; // static void board_init(void); // static void info_init(void); // static void left_screen_task(void* arg); // static void right_screen_task(void* arg); static void screen_task(void* arg); static void unpack_task(void* arg); static void lora_task(void* arg); static void button_task(void* arg); static void business_logic_task(void* arg); static void gui_task(void* pvParameter); void read_deal_data_callback_handler(); // void Sendlist_task_callback_handler(); void uart_task_callback_handler(); void beep_open() { // Set duty to 50% ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, LEDC_DUTY)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); } void beep_close() { ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, 0)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); } void beep_blink(uint16_t ms,uint16_t count) { for(int i =0;i60) { Machine_info.last_batt_precent = Machine_info.batt_precent; value_count = 0; } } }else //未充电 { printf("charge_key is %s\r\n",!charge_key?"charge in":"charge out"); // extern void dis_right_instructions(); // dis_right_instructions(); if(xQueueSend(screen_queue,&screen_dis_info,portMAX_DELAY) != true) { ESP_LOGE(LOG_TAG,"err:screen queue send fail"); } printf("start power off\r\n"); uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM); #if 1 //电源按键 // adc_oneshot_del_unit(adc1_handle); gpio_reset_pin(4); int ext_wakeup_pin_0 = 4; printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0); ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0)); // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep. // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs. // No need to keep that power domain explicitly, unlike EXT1. ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0)); ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0)); gpio_reset_pin(2); const int ext_wakeup_pin_1 = 2; const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1; printf("Enabling EXT1 wakeup on pins GPIO%d\r\n",ext_wakeup_pin_1); ESP_ERROR_CHECK(esp_sleep_enable_ext1_wakeup(ext_wakeup_pin_1_mask, ESP_EXT1_WAKEUP_ALL_LOW)); #endif esp_deep_sleep_start(); break; } vTaskDelay(1000 / portTICK_PERIOD_MS); } } // xTaskCreate( left_screen_task, "left_screen_task", 25*1024, NULL, configMAX_PRIORITIES - 1, NULL); //idf.py 设置分区 spiffs_init(); extern uint32_t ulp_wakeup_result; if ( (reson !=ESP_SLEEP_WAKEUP_EXT0)&& (reson !=ESP_SLEEP_WAKEUP_ULP)&& (reson !=ESP_SLEEP_WAKEUP_TIMER) ) { #if PRINT_SPIFFS printHexData(&default_info,sizeof(Machine_info_t)); // spiffs_write(&default_info); #endif spiffs_read_powerOn(&Machine_info); //重新初始化开机后默认关机 Machine_info.power_status = 0; user_nvs_init(); } if(reson == ESP_SLEEP_WAKEUP_EXT0) { #if 0 adc1_init(); int value = 0; while(1) { value++; adc_read_left_key_pin(adc1_handle); vTaskDelay(10 / portTICK_PERIOD_MS); if(value>10) { break; } } #else int power_key =0; adc1_init(); while(1) { //value++; power_key = gpio_get_level(4); vTaskDelay(4000 / portTICK_PERIOD_MS); if( 0 == gpio_get_level(4)) { if(read_battery_voltage()<10) //判断电压小于10% 不让开机 { printf("start power off\r\n"); uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM); #if 1 //电源按键 // adc_oneshot_del_unit(adc1_handle); gpio_reset_pin(4); int ext_wakeup_pin_0 = 4; printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0); ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0)); // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep. // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs. // No need to keep that power domain explicitly, unlike EXT1. ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0)); ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0)); gpio_reset_pin(2); const int ext_wakeup_pin_1 = 2; const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1; printf("Enabling EXT1 wakeup on pins GPIO%d\r\n",ext_wakeup_pin_1); ESP_ERROR_CHECK(esp_sleep_enable_ext1_wakeup(ext_wakeup_pin_1_mask, ESP_EXT1_WAKEUP_ALL_LOW)); #endif esp_deep_sleep_start(); } adc_oneshot_del_unit(adc1_handle); //删除adc使用 uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM); printf("power on-\r\n"); #if 1//USER_DEEP_SLEEP_ENABLE reson = is_wake_up_reson(); //返回唤醒的原因 /* ULP Risc-V read and detected a temperature above the limit */ if (reson == ESP_SLEEP_WAKEUP_EXT0) { if(Machine_info.power_status == 0) { Machine_info.power_status = 1; //开机 lora_set_power_level(1); //打开lora电源 // Set duty to 50% ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, LEDC_DUTY)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); vTaskDelay(1000/ portTICK_PERIOD_MS); ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, 0)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); Machine_info.left_current_Quick_refresh_time = 5; vTaskDelay(1000/ portTICK_PERIOD_MS); // printf("开机刷屏\r\n"); // if(xQueueSend(screen_queue,&Machine_info,portMAX_DELAY) != true) // { // printf("left send fail\r\n"); // } }else if(Machine_info.power_status == 1){ printf("aready power on\r\n"); } } #endif break; }else { printf("start power off\r\n"); uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM); #if 1 //电源按键 // adc_oneshot_del_unit(adc1_handle); gpio_reset_pin(4); int ext_wakeup_pin_0 = 4; printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0); ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0)); // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep. // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs. // No need to keep that power domain explicitly, unlike EXT1. ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0)); ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0)); gpio_reset_pin(2); const int ext_wakeup_pin_1 = 2; const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1; printf("Enabling EXT1 wakeup on pins GPIO%d\r\n",ext_wakeup_pin_1); ESP_ERROR_CHECK(esp_sleep_enable_ext1_wakeup(ext_wakeup_pin_1_mask, ESP_EXT1_WAKEUP_ALL_LOW)); #endif esp_deep_sleep_start(); } } #endif printf("deep Wake up from ext0\n"); }else if(reson == ESP_SLEEP_WAKEUP_ULP) { printf("wakeup_result = %ld\r\n",ulp_wakeup_result); // int key = find_key_value(ulp_wakeup_result); // printf("key = %d\r\n",key); #if 1 //reson = is_wake_up_reson(); //返回唤醒的原因 /* ULP Risc-V read and detected a temperature above the limit */ if (reson == ESP_SLEEP_WAKEUP_ULP) { if(Machine_info.power_status == 0) { printf("left key press power off\r\n"); uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM); #if 1 font_into_sleep(); #include "EPD.h" epd_sleep(SCREEN_LEFT); epd_sleep(SCREEN_RIGHT); //gpio_hold_en(PIN_L_CS); //gpio_hold_en(PIN_R_CS); // gpio_set_level(PIN_L_CS,1); // gpio_set_level(PIN_R_CS,1); //gpio_reset_pin(46); //uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM); //ESP_ERROR_CHECK(uart_wait_tx_done(UART_NUM_1,portMAX_DELAY)); esp_sleep_disable_wakeup_source(ESP_SLEEP_WAKEUP_TIMER); // gpio_set_level(LORA_TXD_PIN, 0); // gpio_set_level(LORA_RXD_PIN, 0); //uart_sleep_in_config(); uart_driver_delete(UART_NUM_1); gpio_reset_pin(LORA_TXD_PIN); gpio_reset_pin(LORA_RXD_PIN); gpio_config_t io_conf = {}; io_conf.pin_bit_mask = (1<= Machine_info.left_max_Quick_refresh_time) { Machine_info.left_current_Quick_refresh_time = 0; Paint_leftScreen(Machine_info.power_status,false); } else { Machine_info.left_current_Quick_refresh_time++; Paint_leftScreen(Machine_info.power_status,true); } } else//刷右屏 { if(Machine_info.right_current_Quick_refresh_time == 0) { Machine_info.left_current_Quick_refresh_time = 1; Paint_rightScreen(Machine_info.power_status,true); } else { Paint_rightScreen(Machine_info.power_status,false); } } if((Machine_info.power_status == 1)&&(Machine_info.paired == 1)&& screen_dis_info.is_into_sleep) { ESP_LOGW(LOG_TAG,"刷屏进入休眠 %s",screen_dis_info.is_left?"左屏刷新":"右屏刷新"); sleep_timer_start(100); //进入睡眠 } if(Machine_info.power_status == 0 && screen_dis_info.is_left == false)//展示说明书都是先左后右,等右屏刷完再休眠 { printf("=>screen deep sleep\r\n"); uart_wait_tx_idle_polling(CONFIG_ESP_CONSOLE_UART_NUM); #if 1 //电源按键 gpio_reset_pin(4); int ext_wakeup_pin_0 = 4; printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0); ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 0)); // Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep. // EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs. // No need to keep that power domain explicitly, unlike EXT1. ESP_ERROR_CHECK(rtc_gpio_pullup_en(ext_wakeup_pin_0)); ESP_ERROR_CHECK(rtc_gpio_pulldown_dis(ext_wakeup_pin_0)); esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON); ESP_ERROR_CHECK( esp_sleep_enable_ulp_wakeup()); #endif esp_deep_sleep_start(); } } } } static void button_task(void* arg) { //update_last_button_info(Machine_info.current_button.button_info);//初始化上个按键为运行,用作paint0703计时 uint8_t button_info; while(1) { if(xQueueReceive(button_Data_queue, &button_info, (TickType_t)portMAX_DELAY)) { #if 1 ESP_LOGI(LOG_TAG,"btn_flag[%d][%d][%d][%d][%d][%d],button_info = [%d]%s ",Machine_info.btn_dis_flag[0],\ Machine_info.btn_dis_flag[1],Machine_info.btn_dis_flag[2],Machine_info.btn_dis_flag[3],Machine_info.btn_dis_flag[4],\ Machine_info.btn_dis_flag[5],button_info,Machine_info.power_status?"开机":"关机"); 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]",\ Machine_info.batt_precent,\ Machine_info.cid,\ Machine_info.last_button.button_info,\ Machine_info.lora_new_channel,\ Machine_info.eflagID,\ Machine_info.Duration_time,\ Machine_info.rssi,\ Machine_info.paired?"已配网":"未配网"); #endif if(button_info < 0x12) //左屏慕按键 { // vTaskDelay(200/ portTICK_PERIOD_MS); // print_lora();//按键查询lora配置 if(Machine_info.btn_dis_flag[button_info-1] == false) { printf("按键关闭,默认运行\n"); button_info = STATE_OPERATION;//按键关闭,默认运行 if((Machine_info.power_status == 1) && (Machine_info.paired == 1)) { sleep_timer_start(100); //进入睡眠 } } Machine_info .current_button.button_info = button_info; //判断当前的按键状态 设置为当前状态后 再次按键不处理 printf("last btn = %d ,curr btn = %d\n",Machine_info.last_button.button_info , Machine_info.current_button.button_info); if(Machine_info.last_button.button_info != Machine_info.current_button.button_info) { if(Machine_info.paired == 1) { // printf("paired add data to list chanl = 0x%02x\r\n",Machine_info.lora_new_channel); getRtcTime(&Machine_info); //获取当前时间 //更新当前时间 Machine_info.current_button.button_info = button_info; Machine_info.current_button.Year = Machine_info.year; Machine_info.current_button.Month = Machine_info.month; Machine_info.current_button.Day = Machine_info.day; Machine_info.current_button.Hour = Machine_info.hour; Machine_info.current_button.Minute = Machine_info.min; Machine_info.current_button.Second = Machine_info.sec; long long current_Duration_time = calculate_minutes_difference ( Machine_info.last_button.Year, Machine_info.last_button.Month , Machine_info.last_button.Day , Machine_info.last_button.Hour , Machine_info.last_button.Minute , Machine_info.last_button.Second , Machine_info.current_button.Year, Machine_info.current_button.Month , Machine_info.current_button.Day , Machine_info.current_button.Hour , Machine_info.current_button.Minute , Machine_info.current_button.Second ); Machine_info.Duration_time = current_Duration_time;//持续时长 printf("Machine_info.Duration_time = %ld\r\n",Machine_info.Duration_time); reset_btn_last_time(); #if 0 printf("list before\r\n"); printList(Send_list); if(Machine_info.Duration_time == 0) { deleteNode_head(Send_list); } printf("list after\r\n"); printList(Send_list); #endif set_status_heights(); Machine_info.Duration_time = 0; //更新上次的状态 update_last_button_info(Machine_info.last_button.button_info); }else { printf("not add data to list\r\n"); } Machine_info.last_button.button_info = Machine_info.current_button.button_info; // Machine_info.left_state = button_info; Machine_info.left_state = Machine_info.current_button.button_info; #if 1 screen_dis_info.is_left = true; screen_dis_info.is_into_sleep = true; if(xQueueSend(screen_queue,&screen_dis_info,portMAX_DELAY) != true) { ESP_LOGE(LOG_TAG,"err:screen queue send fail"); } #endif // Set duty to 50% ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, LEDC_DUTY)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); vTaskDelay(30 / portTICK_PERIOD_MS); ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, 0)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); //printList(Send_list); //printList(list_head); } else//和上个按键重复,唤醒原因为ulp唤醒,不进入休眠 { printf("和上个按键重复,唤醒原因为ulp唤醒,不进入休眠\r\n"); sleep_timer_start(100); //开始进入倒计时休眠 } }else //右屏幕按键触发 { if(button_info == POWER_ON_PRESS_VALUE) //power 开机时短按 { // Set duty to 50% ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, LEDC_DUTY)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); vTaskDelay(30 / portTICK_PERIOD_MS); ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, 0)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); if( (Machine_info.power_status == 1) && (Machine_info.paired == 1)) { //判断当前开机 是否配对 继续执行时间片操作 sleep_timer_start(100); //开始进入倒计时休眠 } } if(button_info == POWER_OFF_PRESS_VALUE) //power 关机时短按 { sleep_timer_start(100); //开始进入倒计时休眠 } if(button_info == POWER_ON_INTO_STATUS_CHANGE_VALUE) //power 长按触发 { // Set duty to 50% ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, LEDC_DUTY)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); vTaskDelay(1000 / portTICK_PERIOD_MS); ESP_ERROR_CHECK(ledc_set_duty(LEDC_MODE, LEDC_CHANNEL, 0)); // Update duty to apply the new value ESP_ERROR_CHECK(ledc_update_duty(LEDC_MODE, LEDC_CHANNEL)); if(Machine_info.power_status == 1) //开机状态 { Machine_info.power_status = 0; printf("poweron->poweroff\r\n"); } else if(Machine_info.power_status == 0) { printf("power on\r\n"); Machine_info.power_status = 1; lora_set_power_level(1); font_exit_sleep(); gpio_hold_dis(LORA_TXD_PIN); gpio_hold_dis(LORA_RXD_PIN); gpio_hold_dis(PIN_L_CS); gpio_hold_dis(PIN_R_CS); //恢复串口i功能 uart_sleep_out_config(); } screen_dis_info.is_left = true; screen_dis_info.is_into_sleep = false; if(xQueueSend(screen_queue,&screen_dis_info,portMAX_DELAY) != true) { ESP_LOGE(LOG_TAG,"err:screen queue send fail"); } screen_dis_info.is_left = false; screen_dis_info.is_into_sleep = true; if(xQueueSend(screen_queue,&screen_dis_info,portMAX_DELAY) != true) { ESP_LOGE(LOG_TAG,"err:screen queue send fail"); } } if(button_info == POWER_ON_INTO_DIS_RIGHT) { screen_dis_info.is_left = false; if(xQueueSend(screen_queue,&screen_dis_info,portMAX_DELAY) != true) { ESP_LOGE(LOG_TAG,"err:screen queue send fail"); } } if(button_info == POWER_ON_INTO_OTA_VALUE) //进入OTA模式 { beep_blink(50,3); printf("into ota mode\r\n"); #include "iot_button.h" iot_button_stop(); esp_ble_ota(); } if(button_info == POWER_ON_INTO_RESET_VALUE) //进入配网模式 { beep_blink(2000,1); printf("into reset mode\r\n"); font_exit_sleep(); lora_set_power_level(1); uart_sleep_out_config(); #include "user_sleep.h" //#include "esp_sleep.h" extern void sleep_timer_stop(); extern void Already_send_timer_stop(); sleep_timer_stop(); Already_send_timer_stop(); // //修改信道前修改设备ID 及 设备ID // dymatic_change_device_id(0x00000001); // dymatic_change_dst_device_id(0xFFFFFFFF); // //切换信道 // dymatic_change_chanel(Machine_info.lora_factory_channel); //切换信道 // // spiffs_read(&Machine_info); vTaskDelay(300 / portTICK_PERIOD_MS); reset_default(true,1); reset_lora(LORA_CHANENL); vTaskDelay(300 / portTICK_PERIOD_MS); } } } } } static void business_logic_task(void* arg) { //YC_DATA_T tmp; int len = 0; bool is_refresh =false; for(;;) { if(xQueueReceive(yc_data_queue, &len, (TickType_t)portMAX_DELAY)) { #if 1 is_refresh = subcontract(&yc_data); if(is_refresh) { screen_display(); }else { printf("not display fresh\r\n"); } #endif free(yc_data.data); //释放内存 yc_data.data = NULL; yc_data.len = 0; yc_data.index = 0; } } } static void unpack_task(void* arg) { LORA_DATA_T tmp_data; extern esp_timer_handle_t lora_timer; for(;;) { if(xQueueReceive(lora_data_queue, &tmp_data, (TickType_t)portMAX_DELAY)) { if(!esp_timer_is_active(lora_timer)) { lora_timer_start(); } else { lora_timer_restart(); } yc_data.len += tmp_data.data_len; memcpy(yc_data.data+yc_data.index,tmp_data.data_buf,tmp_data.data_len); yc_data.index += tmp_data.data_len; } } } static void lora_task(void* arg) { lora_event_task(arg); } // /********************************************************************************* // * function : Sendlist_task_callback_handler // * Description : 发送处理链表函数 // * Input : // * Output : // * Author : 祁鑫 Data : 2023 9.12 // **********************************************************************************/ // void Sendlist_task_callback_handler() // { // int length = 0; // uint8_t* result = (uint8_t*) malloc(buffer_size+1); // TickType_t xLastWakeTime; // #if 0 // const TickType_t xFrequency = 400/10; // 定时通知的间隔 // #else // const TickType_t xFrequency = 500/10; // 定时通知的间隔 // #endif // // 初始化xLastWakeTime // xLastWakeTime = xTaskGetTickCount(); // int receive_times = 0; // int user_size = 0; // int result_length = 0; // //int result_length = 0; // static int result_index = 0; // int result_data_len = 0; // while (1) { // #if 0 // //定时通知数据处理任务有新数据可用 // vTaskDelayUntil(&xLastWakeTime, xFrequency); // #endif // if(xQueueReceive(Send_Data_queue, &length, portMAX_DELAY) == pdPASS) // { // //int len = countNodes(Send_list); /* returns the number of nodes in the list */ // Node *list = Send_list; //发送数据链表 // int len = countNodes(Send_list); /* returns the number of nodes in the list */ // if(len!=0) // { // printf("current wait send num data=%d\r\n",len); // #if 1 // //int len = countNodes(list); /* returns the number of nodes in the list */ // while(len) // { // //int busy = get_lora_busy_pin(); // //printf("busy = %d\r\n",busy); // printf("send times\r\n"); // //if() // lora_send_data((char *)list->data,list->len); // list=list->next; // len--; // } // //Send_list = deleteList(Send_list); // free(list); // #endif // } // #if 0 // for (int i = 0; i < len; i++) // { // printf("%02x",result[i]); // } // #endif // } // } // } /********************************************************************************* * function : uart_task_callback_handler * Description : 串口0函数 * Input : * Output : * Author : 祁鑫 Data : 2023 9.12 **********************************************************************************/ void uart_task_callback_handler() { // #include "driver/uart.h" // uint8_t dtmp[200]= {0}; // while (1) // { // printf("uart 0 rev = "); // int len = uart_read_bytes(UART_NUM_0, dtmp, 1024,200/portTICK_PERIOD_MS); // if(len) // { // for(int i = 0;i=0) #endif if(user_size>0) { #if 0 for (int i = 0; i < len; i++) { printf("%02x",result[i]); } #endif printf("times comming length=%d\r\n",user_size); if(user_size == 36) { y_ringbuf_read_clear(lora_ringbuf, result, user_size); //读取并清除数据 } #if 1 int len = y_ringbuf_read_clear(lora_ringbuf, result, user_size); //读取并清除数据 yc_data.len = user_size; yc_data.data = malloc(sizeof(uint8_t)*user_size);//分配内存 memcpy(yc_data.data,result,user_size); //lora_send_queue_callback(result,len); //发送消息处理函数 if(xQueueSend(yc_data_queue,&len,0) != true) { ESP_LOGE(LOG_TAG,"yc_data_queue send is fail"); } #endif #if USER_OTA if((user_size>1024)||(user_size == 0) || (((user_size<1024))&&(is_ota ==true)) ) if(xQueueSend(ota_queue,&user_size,0) != true) { ESP_LOGE(LOG_TAG,"ota_queue send is fail"); } #endif } } #else int length = 0; uint8_t* result = (uint8_t*) malloc(buffer_size+1); int user_size = 0; while(1){ if(xQueueReceive(lora_dealhandle, &length, portMAX_DELAY) == pdPASS) { if(rssi!=0) { Machine_info.rssi = rssi; } //printf("deal data\r\n"); user_size = y_ringbuf_get_used_size(lora_ringbuf); if(user_size>0) { printf("lora 数据长度 = %d\r\n",user_size); #if 0 if(user_size == 36) { y_ringbuf_read_clear(lora_ringbuf, result, user_size); //读取并清除数据 #if 1 for (int i = 0; i < user_size; i++) { printf("%02x",result[i]); } #endif }else #endif { #if 1 int len = y_ringbuf_read_clear(lora_ringbuf, result, user_size); //读取并清除数据 #if 0 for (int i = 0; i < user_size; i++) { printf("%02x",result[i]); } printf("\r\n"); #endif ESP_LOG_BUFFER_HEX("接收的lora:",result,user_size); yc_data.len = user_size; yc_data.data = malloc(sizeof(uint8_t)*user_size);//分配内存 memcpy(yc_data.data,result,user_size); //lora_send_queue_callback(result,len); //发送消息处理函数 if(xQueueSend(yc_data_queue,&len,(TickType_t)portMAX_DELAY) != true) { ESP_LOGE(LOG_TAG,"yc_data_queue send is fail"); } #endif } } } } #endif }