2020-03-30 19:33:25 +08:00
|
|
|
/*
|
2021-10-26 16:24:54 +08:00
|
|
|
* SPDX-FileCopyrightText: 2016 Intel Corporation
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 Wind River Systems, Inc.
|
|
|
|
|
* SPDX-FileContributor: 2020-2021 Espressif Systems (Shanghai) CO LTD
|
2020-03-30 19:33:25 +08:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
2023-08-25 14:28:44 +08:00
|
|
|
#include "mesh/kernel.h"
|
2020-03-30 19:33:25 +08:00
|
|
|
|
2020-12-07 17:03:11 +08:00
|
|
|
void k_sleep(int32_t duration)
|
2020-03-30 19:33:25 +08:00
|
|
|
{
|
|
|
|
|
vTaskDelay(duration / portTICK_PERIOD_MS);
|
|
|
|
|
}
|