ci(mdns): Fix mdns host test layers with static task creation

This commit is contained in:
David Cermak
2025-02-03 12:46:50 +01:00
parent eb4ab52487
commit 0690eba3a8
4 changed files with 53 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/*
* SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
* SPDX-FileCopyrightText: 2022-2025 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Unlicense OR CC0-1.0
*/
@ -125,3 +125,13 @@ uint32_t esp_log_timestamp(void)
{
return 0;
}
void *heap_caps_malloc(size_t size, uint32_t caps)
{
return malloc(size);
}
void heap_caps_free( void *ptr)
{
free(ptr);
}