Quote:
|
Originally Posted by CmptrGk
}
}
/************************************************** ****************************/
/************************************************** ****************************/
/************************************************** ****************************/
[/code]
|
The first error sounds like it really occurs earlier in user_routines_fast.c. Take a look at the line(s) before this routine and look for at least 2 open brackets that don't have matching close brackets.
You have one too many closing brackets "}" in this routine, but it doesn't complain, so I'd say you have too many open brackets "{" earlier in the file. That would explain why you get an error message about "void Process_Data..."
The error message on the last line usually means the compiler cannot resolve an earlier problem (such as too many open brackets).