Question
lwip webserver is not loaded if multiple threads are used for receive.
working code :
void recvfrom_init(void)
{
/* start the udp thread */
sys_thread_new("recvfromDev1", recvfrom1, NULL, 64, osPriorityAboveNormal);
}
not working code :
void recvfrom_init(void)
{
/* start the udp thread */
sys_thread_new("recvfromDev1", recvfrom1, NULL, 64, osPriorityAboveNormal);
sys_thread_new("recvfromDev2", recvfromDev2, NULL, 64, osPriorityAboveNormal);
}
