From f9b6440f7f97b5623bd2bea8c74da412ef8b67ad Mon Sep 17 00:00:00 2001 From: aanper Date: Thu, 29 Oct 2020 10:13:56 +0300 Subject: [PATCH] hotfix: increase max task to 10 --- core/furi_ac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/furi_ac.c b/core/furi_ac.c index ea0b6728..d4d87a01 100644 --- a/core/furi_ac.c +++ b/core/furi_ac.c @@ -9,7 +9,7 @@ #include #define DEFAULT_STACK_SIZE 2048 // Stack size in bytes -#define MAX_TASK_COUNT 8 +#define MAX_TASK_COUNT 10 #define INVALID_TASK_ID UINT16_MAX static StaticTask_t task_info_buffer[MAX_TASK_COUNT];