Hi,
In my C28 application, I would like to disable optimization only for a specific function or code block. And I would like to specify that directly inside the C code.
With gcc, I can do that with :
__attribute__((optimize("O0")))
static void unoptimizedFunction()
{
...
}
Is is possible to do the same with C2000 compiler ?
Thanks a lot!