FreeRTOSConfig.h: Disable hooks.

Upgraded FreeRTOS builds. But hooks are broken.
This commit is contained in:
RedHawk 2023-03-23 12:42:05 +02:00
parent 96c8be8573
commit 64e494424d
2 changed files with 7 additions and 7 deletions

View File

@ -21,9 +21,9 @@
<targetPlatform binaryParser="org.eclipse.cdt.core.ELF;org.eclipse.cdt.core.GNU_ELF" id="com.crt.advproject.platform.exe.debug.1950213124" name="ARM-based MCU (Debug)" superClass="com.crt.advproject.platform.exe.debug"/>
<builder buildPath="${workspace_loc:/freertos_blinky}/Debug" id="com.crt.advproject.builder.exe.debug.663820658" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="com.crt.advproject.builder.exe.debug"/>
<tool id="com.crt.advproject.cpp.exe.debug.829489589" name="MCU C++ Compiler" superClass="com.crt.advproject.cpp.exe.debug">
<option id="com.crt.advproject.cpp.hdrlib.1429955141" superClass="com.crt.advproject.cpp.hdrlib"/>
<option id="gnu.cpp.compiler.option.preprocessor.def.880776425" superClass="gnu.cpp.compiler.option.preprocessor.def"/>
<option id="com.crt.advproject.cpp.fpu.1443305049" superClass="com.crt.advproject.cpp.fpu"/>
<option id="com.crt.advproject.cpp.hdrlib.1429955141" superClass="com.crt.advproject.cpp.hdrlib" useByScannerDiscovery="false"/>
<option id="gnu.cpp.compiler.option.preprocessor.def.880776425" superClass="gnu.cpp.compiler.option.preprocessor.def" useByScannerDiscovery="false"/>
<option id="com.crt.advproject.cpp.fpu.1443305049" superClass="com.crt.advproject.cpp.fpu" useByScannerDiscovery="true"/>
</tool>
<tool id="com.crt.advproject.gcc.exe.debug.1215512120" name="MCU C Compiler" superClass="com.crt.advproject.gcc.exe.debug">
<option id="com.crt.advproject.gcc.arch.1109364070" name="Architecture" superClass="com.crt.advproject.gcc.arch" useByScannerDiscovery="true" value="com.crt.advproject.gcc.target.cm0" valueType="enumerated"/>
@ -45,7 +45,7 @@
<listOptionValue builtIn="false" value="&quot;${workspace_loc:/${ProjName}/example/inc}&quot;"/>
<listOptionValue builtIn="false" value="&quot;${workspace_loc:/${ProjName}/freertos/inc}&quot;"/>
</option>
<option id="com.crt.advproject.gcc.fpu.254185411" superClass="com.crt.advproject.gcc.fpu"/>
<option id="com.crt.advproject.gcc.fpu.254185411" superClass="com.crt.advproject.gcc.fpu" useByScannerDiscovery="true"/>
<inputType id="com.crt.advproject.compiler.input.756127691" superClass="com.crt.advproject.compiler.input"/>
</tool>
<tool id="com.crt.advproject.gas.exe.debug.1223846629" name="MCU Assembler" superClass="com.crt.advproject.gas.exe.debug">

View File

@ -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