This is the C code from the Make Controller firmware. I am familiar with void pointers, but I have never seen syntax like the first line of this function. What exactly is achieved by this?
void MakeStarterTask(void* parameters)
{
(void)parameters;
Run();
TaskDelete(NULL);
}
source
share