Open GoogleCodeExporter opened 9 years ago
please correct in testParams function
printf("myFloatP = %d\n\r",*myFloatP);
with
printf("myFloatP = %f\n\r",*myFloatP);
Anyway this is not the solution of the problem, since the issue is present in
the pointer parameter ;-)
Original comment by ozlbi...@gmail.com
on 9 Feb 2012 at 11:04
this issue is solved;
instead of
float* myFloat = (float*)Param[4]->Val->Pointer;
use
double* myFloat = (double*)Param[4]->Val->Pointer;
Float pointer params are always treated as double pointer param.
Original comment by ozlbi...@gmail.com
on 2 Apr 2013 at 6:38
Original issue reported on code.google.com by
ozlbi...@gmail.com
on 9 Feb 2012 at 7:29