From 27e87e408350fc899a6c41e54295c285565b9ed4 Mon Sep 17 00:00:00 2001 From: bogd Date: Wed, 26 Mar 2025 18:55:03 +0200 Subject: [PATCH] rollback expected max data size to fix file transfer operations --- include/SystemApplication.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SystemApplication.h b/include/SystemApplication.h index d48a5fa..f72e3a5 100644 --- a/include/SystemApplication.h +++ b/include/SystemApplication.h @@ -30,7 +30,7 @@ #define REAST_API_DEBUG_MODE 0 -#define EXPECTED_MAX_DATA_SIZE (4096 * 1) +#define EXPECTED_MAX_DATA_SIZE (4096 * 2) #define VAR_MAX_NAME_LENGTH (32) #define VAR_MAX_VALUE_LENGTH (EXPECTED_MAX_DATA_SIZE - 512)