Change xTaskCreate priority.
Priority #1 appears not to be working. Priority #2 works just fine.
This commit is contained in:
parent
857b8002e0
commit
5e3e69ba02
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue