EC600U_esp32_iap_uart/HiLinkSDK/adapter/hilink_open_timer_adapter.c
2024-02-05 17:39:56 +08:00

15 lines
356 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright (c) Huawei Technologies Co., Ltd. 2019-2021. All rights reserved.
* Description: 系统适配层定时器接口函数(需设备厂商实现)
*/
#include "hilink_open_timer_adapter.h"
/*
* 将进程休眠milliSecond指定的时间
* milliSecond为休眠的毫秒数
* 返回 0表示成功其他表示返回失败
*/
int HILINK_MilliSleep(unsigned long milliSecond)
{
return 0;
}