After creating a new project that does not provide Board from SDK, I am running the freeRTOS example, but there is a problem that it does not match.
So, I added CPU.h at the beginning of freertos\template\FreeRTOSConfig.h file.
In my case, because I use LPC54618, I add the following line at the top of "FreeRTOSConfig.h" file.
#include "LPC54618.h"
The SDK used is v2.9.0.
It works without problems, but something is weird. I don't think it's the right way to do it, but what is the correct way? I don't think it's the normal way...