491524cb96
1. service 通道增加【连接状态】属性 2. service 通道增加发送消息质量配置,ACK、CRC 可配置开关; 3. 发送接口支持阻塞、非阻塞两种发送方式; 4. 已对接到 device 框架,支持 rt_device 接口操作 5. 已对接到 DFS 框架,支持 POSIX 接口操作 6. 移除 hw_port 目录,改为软件包方式添加 hw_port 7. 修复已知 BUG
27 lines
760 B
C
27 lines
760 B
C
/*
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2021-02-02 xiangxistu the first version
|
|
* 2021-07-13 Sherman add reconnect API
|
|
*
|
|
*/
|
|
#ifndef __RT_LINK_HW_H__
|
|
#define __RT_LINK_HW_H__
|
|
|
|
#include <rtdef.h>
|
|
|
|
rt_size_t rt_link_hw_recv_len(struct rt_link_receive_buffer *buffer);
|
|
void rt_link_hw_copy(rt_uint8_t *dst, rt_uint8_t *src, rt_size_t count);
|
|
void rt_link_hw_buffer_point_shift(rt_uint8_t **pointer_address, rt_size_t length);
|
|
|
|
rt_err_t rt_link_hw_init(void);
|
|
rt_err_t rt_link_hw_deinit(void);
|
|
rt_err_t rt_link_hw_reconnect(void);
|
|
rt_size_t rt_link_hw_send(void *data, rt_size_t length);
|
|
|
|
#endif /* _RT_LINK_PORT_INTERNAL_H_ */
|