Hi,
taskHandles.xTaskControl = xTaskCreateStatic ( Function,
"F Control",
globalSTACK_SIZE_FTASK,
(void *) 1,
tskIDLE_PRIORITY + 5,
taskStacks.xFControl,
&taskBuffers.xFControl);
When I want to create task on IAR Embedded Workbench for ARM, I got this error;
"Error[Pe513]: a value of type “int” cannot be assigned to an entity of type “void *” "
When I write the code on Code Composer Studio, it works perfectly. What should I do?