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()
|
void mdns_init()
|
||||||
{
|
{
|
||||||
#if LWIP_IGMP
|
#if LWIP_IGMP
|
||||||
xTaskCreate(mdns_task, "MDNS", kMDNSStackSize, NULL, 1, NULL);
|
xTaskCreate(mdns_task, "MDNS", kMDNSStackSize, NULL, 2, NULL);
|
||||||
#else
|
#else
|
||||||
#error "LWIP_IGMP needs to be defined in lwipopts.h"
|
#error "LWIP_IGMP needs to be defined in lwipopts.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue