Change xTaskCreate priority.

Priority #1 appears not to be working. Priority #2 works just fine.
This commit is contained in:
Luigi Freitas Cruz 2017-06-05 19:29:04 -03:00 committed by GitHub
parent 857b8002e0
commit 5e3e69ba02

View file

@ -790,7 +790,7 @@ static void mdns_task(void *pvParameters)
void mdns_init()
{
#if LWIP_IGMP
xTaskCreate(mdns_task, "MDNS", kMDNSStackSize, NULL, 1, NULL);
xTaskCreate(mdns_task, "MDNS", kMDNSStackSize, NULL, 2, NULL);
#else
#error "LWIP_IGMP needs to be defined in lwipopts.h"
#endif