From 22ef80db377c2fb56ef06516b248be4eb5a43e00 Mon Sep 17 00:00:00 2001 From: CaCO3 Date: Mon, 16 Jan 2023 00:12:12 +0100 Subject: [PATCH] fix define --- code/include/defines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/include/defines.h b/code/include/defines.h index 5a9210ef..28211c44 100644 --- a/code/include/defines.h +++ b/code/include/defines.h @@ -78,7 +78,7 @@ #define MAX_FILE_SIZE (8000*1024) // 8 MB Max size of an individual file. Make sure this value is same as that set in upload_script.html and ota_page.html! #define MAX_FILE_SIZE_STR "8MB" - #define LOGFILE_LAST_PART_BYTES SERVER_FILER_SCRATCH_BUFSIZE * 20 // 80 kBytes // Size of partial log file to return + #define LOGFILE_LAST_PART_BYTES 80 * 1024 // 80 kBytes // Size of partial log file to return #define SERVER_FILER_SCRATCH_BUFSIZE 4096 #define SERVER_HELPER_SCRATCH_BUFSIZE 8192