From 64e494424daaaf8679a52e411859fe6b4bd5db1a Mon Sep 17 00:00:00 2001 From: RedHawk Date: Thu, 23 Mar 2023 12:42:05 +0200 Subject: [PATCH] FreeRTOSConfig.h: Disable hooks. Upgraded FreeRTOS builds. But hooks are broken. --- source/freertos_blinky/.cproject | 8 ++++---- source/test/freertos/FreeRTOSConfig.h | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/source/freertos_blinky/.cproject b/source/freertos_blinky/.cproject index db3bec0..827e7ea 100644 --- a/source/freertos_blinky/.cproject +++ b/source/freertos_blinky/.cproject @@ -21,9 +21,9 @@ - - diff --git a/source/test/freertos/FreeRTOSConfig.h b/source/test/freertos/FreeRTOSConfig.h index ec2abf9..b01a612 100644 --- a/source/test/freertos/FreeRTOSConfig.h +++ b/source/test/freertos/FreeRTOSConfig.h @@ -73,7 +73,7 @@ *----------------------------------------------------------*/ #define configUSE_PREEMPTION 1 -#define configUSE_IDLE_HOOK 1 +#define configUSE_IDLE_HOOK 0 //1 #define configUSE_TICK_HOOK 0 #define configCPU_CLOCK_HZ ( SystemCoreClock ) #define configTICK_RATE_HZ ( ( portTickType ) 1000 ) @@ -86,9 +86,9 @@ #define configIDLE_SHOULD_YIELD 1 #define configUSE_MUTEXES 1 #define configQUEUE_REGISTRY_SIZE 8 -#define configCHECK_FOR_STACK_OVERFLOW 2 +#define configCHECK_FOR_STACK_OVERFLOW 0 //2 #define configUSE_RECURSIVE_MUTEXES 1 -#define configUSE_MALLOC_FAILED_HOOK 1 +#define configUSE_MALLOC_FAILED_HOOK 0 //1 #define configUSE_APPLICATION_TASK_TAG 0 #define configUSE_COUNTING_SEMAPHORES 1 #define configGENERATE_RUN_TIME_STATS 0