4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-14 23:49:36 +08:00
bernard bbe6425f94 [KConfig] Update Kconfig
1. Change the type of RT_DEBUG_THREAD to int;
2. Add Kconfig of VBUS.
2017-11-03 21:08:00 +08:00

24 lines
610 B
Plaintext

menu "VBUS(Virtual Software BUS)"
config RT_USING_VBUS
bool "Enable VBUS"
default n
if RT_USING_VBUS
config RT_USING_VBUS_RFS
bool "Enable Remote File System on VBUS"
default n
help
When enable remote file system, the application can visit the remote file system
through VBUS with POSIX file I/O.
config RT_USING_VBUS_RSHELL
bool "Enable Remote Shell on VBUS"
default n
help
When enable remote shell, the finsh/msh of RT-Thread can be operated from another
Operating System.
endif
endmenu