This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

PORTABLE.H(103): error C129: missing ';' before '*'

Hi everybody !
I just want to ask somethong...

portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters );

here the compiler says:
PORTABLE.H(103): error C129: missing ';' before '*'

can somebody help ???

Parents
  • "the problem is usually somewhere above/before the reported line number."

    Very true!

    The prime suspect must be portSTACK_TYPE - are you sure that this has been correctly defined before this line?
    Remember: 'C' is case-sensitive.

    If any other errors were reported before this one, you should certainly attend to them first.

Reply
  • "the problem is usually somewhere above/before the reported line number."

    Very true!

    The prime suspect must be portSTACK_TYPE - are you sure that this has been correctly defined before this line?
    Remember: 'C' is case-sensitive.

    If any other errors were reported before this one, you should certainly attend to them first.

Children