Hello,
I am trying to create and build a new project. I am struck with the below error. Kindly shed your thoughts on rectifying these error.
Many thanks
Deepak
Hello,
I am trying to create and build a new project. I am struck with the below error. Kindly shed your thoughts on rectifying these error.
Many thanks
Deepak
You can either implement this callback or use an alternate macro definition for configASSERT in your FreeRTOSConfig.h
.
You can use this definition of configASSERT - FreeRTOS/FreeRTOSConfig.h at main · FreeRTOS/FreeRTOS · GitHub
Thank you for the response. I am trying to understand why it has prevented me from the first build where I believe the Config Assert is already defined in Config.h file.
Please can you explain?
See the configASSERT() documentation here.
The error isn’t about configASSERT, but about the missing vAssertCalled function which you need to provide (since it is used by the configASSERT macro)
Thank you all it is sorted and understood