Hi Matthew,
Thanks for your reply.
Initially I was using below API for RTCS tasks to create "httpd server" and "httpd session" tasks.
RTCS_task_create(name, priority, stacksize, start, arg);
There exists one more API to which we can pass the attribute(4th parameter) as MQX_FLOATING_POINT_TASK
RTCS_task_create_att(name, priority, stacksize, attribute, start, arg) ;
But when I use this new API; and try to acees html pages on the device; then the web server hangs (no response is received from server; even I dont get any response when I ping the server IP).
I tried the approach suggested by you by calling "_task_enable_fp()" and "_task_disable_fp()" when reading data from server through "asp" .
In this case also sometimes the server sends response; but after refreshing html page ; the web server hangs and does not send any response( here also I dont get any response when I ping the server IP).
Do you see any reason for such behaviour?
Do we have any limitaions on how many number of times I can call _task_enable_fp() and _task_disable_fp() from functions such as "asp" functions which read data from server?
Please let me know if you have any suggestions.
Thanks,
Swapnil