Hi, Rusell.
Now I see whats the problem, the function receive this parameters:
AS1_SendBlock(AS1_TComData *, word , word *)
Word it's declared as Unsigned Short,
What you are sending it's AS1_SendBlock(LDD_TDeviceData, char *, int);
the problem here it's the types because for instance in the second argument, you are sending a string
CodeWarrior automatically cast it for you thats why the problem its a warning and say [ENABLED BY DEFAULT]
what you can do it's the casting befor you send the parameters for example in the sizeof this function return and int what you can do it's this:
word test=sizeof(OutData);
then just send in the function the &test. and the same for the string.
please let me know if it helps.
Regards
-Jonathan