From 0da6b4a5ad609dfaa8e82c6903151af5eda44efd Mon Sep 17 00:00:00 2001 From: Sander Speetjens Date: Thu, 16 Nov 2023 14:48:28 +0100 Subject: [PATCH] TFTP Change comment of virtImage init --- project/Core/Src/tftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Core/Src/tftp.c b/project/Core/Src/tftp.c index 8328eea..4909456 100644 --- a/project/Core/Src/tftp.c +++ b/project/Core/Src/tftp.c @@ -256,7 +256,7 @@ void tftp_server_init(void) { LOG_INFO(TAG, "Initializing tftp server"); // init the index.txt virt_file init_index(); - // init the virtImage.raw virt_file + // init the virtImage.raw virt_file with 80kb of ram virt_file[2].data = malloc(81920 * sizeof(char)); virt_file[2].len = 81920;