mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
15 lines
313 B
C
15 lines
313 B
C
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
* Copyright (c) 2016 Wind River Systems, Inc.
|
|
* Additional Copyright (c) 2020 Espressif Systems (Shanghai) PTE LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "mesh_kernel.h"
|
|
|
|
void k_sleep(s32_t duration)
|
|
{
|
|
vTaskDelay(duration / portTICK_PERIOD_MS);
|
|
}
|