From a6fcad2ecf0dc7fdd5d92730db6cb49f9ef7c738 Mon Sep 17 00:00:00 2001 From: travis-farmer Date: Sat, 28 Dec 2024 03:26:03 -0500 Subject: [PATCH] increased task buffer size --- IO_EXIO485.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IO_EXIO485.h b/IO_EXIO485.h index 8d52e28..b635fb9 100644 --- a/IO_EXIO485.h +++ b/IO_EXIO485.h @@ -419,7 +419,7 @@ struct Task { bool completed; bool processed; }; - static const int MAX_TASKS = 50; + static const int MAX_TASKS = 1000; long taskIDCntr = 1; long CurrentTaskID = -1; int taskResendCount = 0;