CW 10.6 / MQX 4.2 / K60
I'm using FTPSRV with no problems, everything is OK... except if I have an active connection and then, call FTPSRV_release().
Since this call, EVERY tasks on my projects are blocked for ever in ftpsrc.c line 96 :
while(server->server_tid)
{
_sched_yield() ;
}
I try to add a _time_delay() in this loop and I have other tasks OK. But the FTPSRV NEVER shutdown before I cut the FTP client.
Nobody shutdown the FTPSRV() ?
Yvan