STM32 Nucleo 767ZI FreeRTOS benchmark
Im currently porting a CPU performance benchmark from ESP32 to STM32 that uses FreeRTOS. Im unable to make it work due to some errors that continue appearing that might suggest there is a stack overflow, but increasing the stack size doesn´t help.
Debugger console error:
set *(int *)0xE000EDFC=*(int *)0xE000EDFC|0x7F0
set *(unsigned int *)0xe0042008&=~0x1800
The project is composed of main.c, dhrystone.c and whetstone.c. I have added the FreeRTOSconfig.h file.
Now the benchmark codes whetstone.c and dhrystone.c initialiced as tasks. Both codes return information as such:
xTaskNotifyGive( taskHandle );
vTaskDelete( NULL );
