mirror of
https://gitee.com/moluo-tech/AT-Command
synced 2025-06-18 08:27:51 +00:00
24 lines
619 B
C
24 lines
619 B
C
![]() |
/******************************************************************************
|
|||
|
* @brief <EFBFBD>豸<EFBFBD><EFBFBD><EFBFBD>ز<EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*
|
|||
|
* Copyright (c) 2020, <morro_luo@163.com>
|
|||
|
*
|
|||
|
* SPDX-License-Identifier: Apache-2.0
|
|||
|
*
|
|||
|
* Change Logs:
|
|||
|
* Date Author Notes
|
|||
|
*
|
|||
|
******************************************************************************/
|
|||
|
|
|||
|
#ifndef _PLATFORM_DEVICE_H_
|
|||
|
#define _PLATFORM_DEVICE_H_
|
|||
|
|
|||
|
#include <stdbool.h>
|
|||
|
|
|||
|
#define SYS_TICK_INTERVAL 10 /*ϵͳ<CFB5>δ<EFBFBD>ʱ<EFBFBD><CAB1>(ms) */
|
|||
|
|
|||
|
bool is_timeout(unsigned int start, unsigned int timeout);
|
|||
|
unsigned int get_tick(void);
|
|||
|
|
|||
|
#endif
|