mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-11-30 19:18:53 +08:00
78 lines
1.4 KiB
Markdown
78 lines
1.4 KiB
Markdown
|
## platform
|
|||
|
### 概述
|
|||
|
平台接口,包括:获取时间、休眠等函数。
|
|||
|
|
|||
|
----------------------------------
|
|||
|
### 函数
|
|||
|
<p id="platform_methods">
|
|||
|
|
|||
|
| 函数名称 | 说明 |
|
|||
|
| -------- | ------------ |
|
|||
|
| <a href="#platform_get_time_ms64">get\_time\_ms64</a> | 获取当前时间。 |
|
|||
|
| <a href="#platform_platform_prepare">platform\_prepare</a> | |
|
|||
|
| <a href="#platform_sleep_ms">sleep\_ms</a> | |
|
|||
|
#### get\_time\_ms64 函数
|
|||
|
-----------------------
|
|||
|
|
|||
|
* 函数功能:
|
|||
|
|
|||
|
> <p id="platform_get_time_ms64"> 获取当前时间。
|
|||
|
|
|||
|
|
|||
|
|
|||
|
* 函数原型:
|
|||
|
|
|||
|
```
|
|||
|
uint64_t get_time_ms64 ();
|
|||
|
```
|
|||
|
|
|||
|
* 参数说明:
|
|||
|
|
|||
|
| 参数 | 类型 | 说明 |
|
|||
|
| -------- | ----- | --------- |
|
|||
|
| 返回值 | uint64\_t | 成功返回当前时间。 |
|
|||
|
#### platform\_prepare 函数
|
|||
|
-----------------------
|
|||
|
|
|||
|
* 函数功能:
|
|||
|
|
|||
|
> <p id="platform_platform_prepare">
|
|||
|
平台准备函数。
|
|||
|
|
|||
|
|
|||
|
|
|||
|
* 函数原型:
|
|||
|
|
|||
|
```
|
|||
|
ret_t platform_prepare ();
|
|||
|
```
|
|||
|
|
|||
|
* 参数说明:
|
|||
|
|
|||
|
| 参数 | 类型 | 说明 |
|
|||
|
| -------- | ----- | --------- |
|
|||
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|||
|
#### sleep\_ms 函数
|
|||
|
-----------------------
|
|||
|
|
|||
|
* 函数功能:
|
|||
|
|
|||
|
> <p id="platform_sleep_ms">
|
|||
|
睡眠毫秒。
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
* 函数原型:
|
|||
|
|
|||
|
```
|
|||
|
void sleep_ms (uint32_t ms);
|
|||
|
```
|
|||
|
|
|||
|
* 参数说明:
|
|||
|
|
|||
|
| 参数 | 类型 | 说明 |
|
|||
|
| -------- | ----- | --------- |
|
|||
|
| 返回值 | void | 无。 |
|
|||
|
| ms | uint32\_t | 毫秒。 |
|