代码拉取完成,页面将自动刷新
同步操作将从 魔罗/AT Command 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/******************************************************************************
* @brief at模块OS相关移植接口
*
* Copyright (c) 2020, <morro_luo@163.com>
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2020-01-02 Morro 初版
******************************************************************************/
#ifndef _ATUTIL_H_
#define _ATUTIL_H_
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
typedef void *at_sem_t; /*信号量*/
/*
* @brief 获取当前系统毫秒数
*/
static inline unsigned int at_get_ms(void)
{
/*Add here...*/
return 0;
}
/*
* @brief 超时判断
* @retval true | false
*/
static inline bool at_istimeout(unsigned int start_time, unsigned int timeout)
{
return at_get_ms() - start_time > timeout;
}
/*
* @brief 毫秒延时
* @retval none
*/
static inline void at_delay(uint32_t ms)
{
}
/*
* @brief 创建信号
* @retval none
*/
static inline at_sem_t at_sem_new(int value)
{
return NULL;
}
/*
* @brief 等待信号
* @retval none
*/
static inline bool at_sem_wait(at_sem_t s, uint32_t timeout)
{
return false;
}
/*
* @brief 释放信号
* @retval none
*/
static inline void at_sem_post(at_sem_t s)
{
}
/*
* @brief 销毁的信号
* @retval none
*/
static inline void at_sem_free(at_sem_t s)
{
}
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。