491524cb96
1. service 通道增加【连接状态】属性 2. service 通道增加发送消息质量配置,ACK、CRC 可配置开关; 3. 发送接口支持阻塞、非阻塞两种发送方式; 4. 已对接到 device 框架,支持 rt_device 接口操作 5. 已对接到 DFS 框架,支持 POSIX 接口操作 6. 移除 hw_port 目录,改为软件包方式添加 hw_port 7. 修复已知 BUG
26 lines
629 B
Plaintext
26 lines
629 B
Plaintext
# Kconfig file for rt_link
|
|
menuconfig RT_USING_RT_LINK
|
|
bool "RT-Link"
|
|
default n
|
|
|
|
if RT_USING_RT_LINK
|
|
choice
|
|
prompt"use hw crc device or not"
|
|
default RT_LINK_USING_SF_CRC
|
|
|
|
config RT_LINK_USING_SF_CRC
|
|
bool "use software crc table"
|
|
config RT_LINK_USING_HW_CRC
|
|
bool "use hardware crc device"
|
|
endchoice
|
|
|
|
menu "rt link debug option"
|
|
config USING_RT_LINK_DEBUG
|
|
bool "Enable RT-Link debug"
|
|
default n
|
|
config USING_RT_LINK_HW_DEBUG
|
|
bool "Enable RT-Link hw debug"
|
|
default n
|
|
endmenu
|
|
endif
|