1# Kconfig file for rt_link 2menuconfig RT_USING_RT_LINK 3 bool "RT-Link" 4 default n 5 6if RT_USING_RT_LINK 7 choice 8 prompt"use hw crc device or not" 9 default RT_LINK_USING_SF_CRC 10 11 config RT_LINK_USING_SF_CRC 12 bool "use software crc table" 13 config RT_LINK_USING_HW_CRC 14 bool "use hardware crc device" 15 endchoice 16 17 menu "rt link debug option" 18 config USING_RT_LINK_DEBUG 19 bool "Enable RT-Link debug" 20 default n 21 config USING_RT_LINK_HW_DEBUG 22 bool "Enable RT-Link hw debug" 23 default n 24 endmenu 25endif 26