FreeRTOSConfig.h file patching mode
I want to trace ContextSwitchIn and ContextSwitchOut events.
I defined two functions for this.
#define traceTASK_SWITCHED_OUT() getTASK_SWITCHED_OUT_EVENT(pxCurrentTCB)
#define traceTASK_SWITCHED_IN() getTASK_SWITCHED_IN_EVENT(pxCurrentTCB)I put the two functions at the end of the FreeRTOSConfig.h file. But, It is returning to the original file after clean-generate the code again.
It says in the help that patching mode only works on lib/src, lib/include and lib/rsc folders.
FreeRTOSConfig.h is located in the cfg folder. How can I solve this problem?
