mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-29 10:17:30 +02:00
ci(mdns): Fix mdns host test layers with static task creation
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user