fix(mdns): Refactor freertos linux compat layers

Move it to a separate component that could be shared by multiple network
libs.
This commit is contained in:
David Cermak
2023-03-31 17:06:28 +02:00
parent 68392f0ba9
commit 79a0e57ca1
17 changed files with 567 additions and 282 deletions

View File

@ -0,0 +1,13 @@
/*
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#define ESP_TASK_PRIO_MAX 25
#define ESP_TASKD_EVENT_PRIO 5
#define ESP_TASKD_EVENT_STACK 1024