From e9f1448a6927b9258c24bca84236bc3c3d4b0353 Mon Sep 17 00:00:00 2001 From: nhkefus Date: Thu, 17 Apr 2025 17:42:51 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E5=8F=91=E6=9C=AC=E5=9C=B0ota?= =?UTF-8?q?=E4=B8=8A=E4=BC=A0=E7=94=A8=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TC1/http_server/app_httpd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/TC1/http_server/app_httpd.c b/TC1/http_server/app_httpd.c index 96cf2e9..c8dc116 100644 --- a/TC1/http_server/app_httpd.c +++ b/TC1/http_server/app_httpd.c @@ -701,6 +701,7 @@ const struct httpd_wsgi_call g_app_handlers[] = { {"/childLock", HTTPD_HDR_DEFORT, 0, NULL, HttpSetChildLock, NULL, NULL}, {"/deviceName", HTTPD_HDR_DEFORT, 0, NULL, HttpSetDeviceName, NULL, NULL}, {"/buttonEvents", HTTPD_HDR_DEFORT, 0, HttpGetButtonEvents, HttpSetButtonEvent, NULL, NULL}, + {"/ota/fileUpload", HTTPD_HDR_DEFORT, 0, NULL, HttpSetOTAFile, NULL, NULL}, }; static int g_app_handlers_no = sizeof(g_app_handlers) / sizeof(struct httpd_wsgi_call);