Kconfig 610 字节
Newer Older
B
bernard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
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