Remove warnings about unused parameters in port code

This commit is contained in:
Aniruddha Kanhere 2024-02-19 20:59:37 +00:00
parent 1d589293cb
commit 92ae6cf599

View file

@ -19,6 +19,10 @@ StackType_t * pxPortInitialiseStack( StackType_t * pxTopOfStack,
TaskFunction_t pxCode,
void * pvParameters )
{
( void ) pxTopOfStack;
( void ) pvParameters;
( void ) * pxCode;
return NULL;
}