Optimize logging, improve UART/WebSocket tasks, and update configuration.

Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
This commit is contained in:
2025-08-26 10:51:11 +09:00
parent 6d14c65401
commit 0663ef86e1
5 changed files with 214 additions and 93 deletions

View File

@@ -1,26 +1,16 @@
#include "webserver.h"
#include <stdio.h>
#include <string.h>
#include <sys/param.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "freertos/queue.h"
#include "esp_system.h"
#include "esp_wifi.h"
#include "esp_event.h"
#include "esp_log.h"
#include "nvs_flash.h"
#include "esp_netif.h"
#include "driver/uart.h"
#include "esp_http_server.h"
#include "indicator.h"
#include "nconfig.h"
#include "monitor.h"
#include "wifi.h"
#include "datalog.h"
#include "lwip/err.h"
#include "lwip/sockets.h"
#include "lwip/sys.h"
static const char *TAG = "WEBSERVER";