STM32F429IDISC1 added Segger Files with free RTOS

Hi,

Compiler is throwing warning…
STM32F429IDISC1 added Segger Files with free RTOS.
I have added the freertos with segger .But compiler is throwing warning

redefinition of function

traceTASK_NOTIFY_TAKE

traceTASK_NOTIFY

which is already defined in FreeRTOSConfig.h

I am not able to run the Tasks with segger. How to resolve?

Thanks for advance.

Sorry for the delay in replying.

I’m not familiar with the files from Segger, so you may want to ask them directly, but from the compiler error I would guess you have a definition of these two trace macros in FreeRTOSConfig.h (or in a file included from FreeRTOSConfig.h), and then another definition coming from whatever files Segger provide. If you want the ones from Segger then remove the ones in FreeRTOSConfig.h.

Yeah resolved removed macro definition of free rtos thank you